test: fix navigation #2
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
on: | |
push: | |
name: Test Workflow | |
jobs: | |
build: | |
name: Test Workflow | |
runs-on: ubuntu-latest | |
env: | |
GH_TOKEN: ${{secrets.GH_TOKEN}} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Dependencies | |
run: npm ci | |
- name: Lint | |
run: npm run lint | |
- name: Build | |
run: npm run build:client | |
- name: Build for Linux | |
run: npm run build:deb | |
- name: Test | |
run: npm run test |