fix: prepend aliases to refs within function args in on conditions #4114
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: Tests | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
types: [opened, synchronize, reopened, auto_merge_enabled] | |
# Allow parallel jobs on `main`, so that each commit is tested. For PRs, run only the latest commit. | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
timeout-minutes: 5 | |
name: Node.js ${{ matrix.node }} | |
strategy: | |
fail-fast: true | |
matrix: | |
node: [18] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node }} | |
cache: 'npm' | |
- run: npm ci | |
- run: npm run lint | |
- run: npm test -w db-service -w sqlite -w postgres -- --maxWorkers=1 | |
env: | |
FORCE_COLOR: true |