enable custom overFetching heuristic and test all files #10
Workflow file for this run
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: General CI | |
on: | |
pull_request: | |
jobs: | |
linting: | |
name: linting | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 22 | |
- name: Setup Biome | |
uses: biomejs/setup-biome@v2 | |
with: | |
version: 1.8.1 | |
- name: Run Biome | |
run: biome ci --reporter=github --diagnostic-level=error --error-on-warnings . | |
testing: | |
name: test | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 22 | |
- name: install | |
run: npm ci | |
- name: install pm2 | |
run: npm i -g pm2 | |
- name: test | |
run: npm run test |