feat(transactional): enable adapters to opt out of transactional proxy support #176
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: Run tests | |
on: | |
workflow_dispatch: | |
pull_request: | |
branches: | |
- main | |
- release/* | |
concurrency: | |
cancel-in-progress: true | |
group: test-${{ github.ref }} | |
jobs: | |
run_tests: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node: [18, 20] | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: ${{ matrix.node }}.x | |
cache: npm | |
- run: yarn | |
- run: yarn build | |
- run: yarn lint | |
- run: yarn test |