Skip to content

Merge pull request #206 from Amsterdam/dependabot/npm_and_yarn/typesc… #339

Merge pull request #206 from Amsterdam/dependabot/npm_and_yarn/typesc…

Merge pull request #206 from Amsterdam/dependabot/npm_and_yarn/typesc… #339

Workflow file for this run

name: "Install, lint, test & build"
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm install
- name: Lint
run: npm run lint
- name: Run tests
run: npm test
- name: Build project
run: npm run build