ci: skip certain tests for aux ci runs #216
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: Build and Test | |
on: [push] | |
jobs: | |
build-and-test: | |
strategy: | |
matrix: | |
node-version: [16, 18, 20, 21] | |
node-tag: [latest] | |
compiler-tag: [v7.6.1] # latest is v8.0.0-rc1 which is not supported by the sdk currently | |
aux-ci-run: [true] | |
# for lts node also test first known compatible and latest known good compiler and node versions | |
include: | |
- node-version: 20 | |
node-tag: v6.8.0 # v6.3.0 to v6.7.0 use a different config format | |
compiler-tag: v7.4.0 | |
aux-ci-run: true | |
- node-version: 20 | |
node-tag: # latest known good versions are defaulted to, thus not passed explicitly | |
compiler-tag: | |
aux-ci-run: # no aux-ci-run as main ci run, latest version run all tests that are version independent | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- run: npm ci | |
- run: npm run build:clean && npm run build | |
- run: npm run lint:ci | |
- run: npm test | |
env: | |
NODE_VERSION: ${{ matrix.node-version }} | |
NODE_TAG: ${{ matrix.node-tag }} | |
COMPILER_TAG: ${{ matrix.compiler-tag }} | |
AUX_CI_RUN: ${{ matrix.aux-ci-run }} |