Skip to content

SC-8: adding styling conventions #45

SC-8: adding styling conventions

SC-8: adding styling conventions #45

Workflow file for this run

name: Node.js CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
Run-Test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
steps:
- name: Chekout the repository
uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
cache-dependency-path: ./webapp/package-lock.json
- name: Install packages
run: npm ci
working-directory: ./webapp
- name: Build project
run: npm run build
working-directory: ./webapp
- name: Run tests
run: npm test
working-directory: ./webapp