Bump dependencies #198
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build | |
on: | |
push: | |
branches: [ "master" ] | |
pull_request: | |
branches: [ "master" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 20 | |
- name: Clean install | |
run: npm ci | |
- name: Packages audit | |
run: npm audit | |
- name: Typescript compilation | |
run: npx tsc --noEmit | |
- name: Eslint | |
run: npx eslint . | |
- name: Svelte check | |
run: npx svelte-check | |
- name: Vitest | |
run: npx vitest run | |
- name: Build | |
run: npm run build |