Skip to content

Update workflows

Update workflows #138

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
name: Build and Test
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 20.x]
steps:
- uses: actions/checkout@v4
- name: Use node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Cache node_modules
id: cache-modules
uses: actions/cache@v4
with:
path: node_modules
key: ${{ matrix.node-version }}-${{ runner.OS }}-build-${{ hashFiles('package.json') }}
- name: Install
if: ${{ steps.cache-modules.outputs.cache-hit != 'true' }}
run: npm install
- name: Test
run: npm run test:ci
- name: Lint
run: npm run lint
- name: Build
run: npm run build:build
- name: Start Application
run: npm start & wait-on http://localhost:4200
- name: E2E
run: npm run cypress:run