Skip to content

Commit

Permalink
feat(ci): add backwards compatibility tests for isSubsetOf function
Browse files Browse the repository at this point in the history
  • Loading branch information
novusnota committed Oct 31, 2024
1 parent 5b6afb4 commit 84f7082
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/tact.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,24 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v3

- name: Setup Node.js 16 for backwards compat tests
uses: actions/setup-node@v3
with:
node-version: 16
# without caching

- name: Backwards compat tests
run: |
# Install dependencies, gen and build the compiler
yarn install
yarn clean
yarn gen
yarn build
# Test some specific things for backwards compatibility
yarn jest -t 'isSubsetOf'
# Clean-up
yarn cleanall
- name: Setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
Expand Down

0 comments on commit 84f7082

Please sign in to comment.