Skip to content

Added changes

Added changes #27

Workflow file for this run

name: CI
# allow also running manually
on: ["push", "pull_request", "workflow_dispatch"]
jobs:
ci:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: ["20.x"]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: "npm"
cache-dependency-path: "package-lock.json"
- name: Install dependencies
run: npm ci
- name: Run ESLint
run: npm run eslint
- name: Build the application
run: npm run build