docs: add migration from 4.x.x to 5.x.x documentation #125
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: Build and Test | |
on: [push] | |
jobs: | |
build-and-test: | |
strategy: | |
matrix: | |
node-version: [16, 18, 20, 22] | |
node-tag: [v7.2.0] # latest known good | |
compiler-tag: [v8.0.0] # latest known good | |
aux-ci-run: [true] | |
# for lts node also test first known compatible and latest known good compiler and node versions | |
include: | |
- node-version: 22 | |
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: 22 | |
node-tag: latest | |
compiler-tag: latest | |
aux-ci-run: true | |
- node-version: 22 | |
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@v4 | |
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 }} |