Skip to content

Merge pull request #450 from Mindgamesnl/feature/drop-legacy-migration #565

Merge pull request #450 from Mindgamesnl/feature/drop-legacy-migration

Merge pull request #450 from Mindgamesnl/feature/drop-legacy-migration #565

Workflow file for this run

name: Client lint and build
on: [ push ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [ 20.* ]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install stuff
run: npm i
working-directory: ./client
- run: npm run lint
working-directory: ./client
- run: npm run build
working-directory: ./client