feat: start using the Node.js test runner and the Chai.js assertions #1702
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: CI | |
on: [push, pull_request] | |
jobs: | |
ci: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: "22.x" | |
cache: "npm" | |
- name: CI | |
run: | | |
npm ci | |
npm run compile | |
npm run lint | |
npm run stylelint | |
npm run build -- --no-stats | |
npm run test -- --concurrency=1 -- --timeout=60s | |
env: | |
DATABASE_CLIENT: sqlite |