breaking: Switch to ESM only. Drop Node.js v14 support. #667
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 | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
jobs: | |
test: | |
name: Test | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, windows-latest] | |
node-version: [14, 16, 18, 20] | |
fail-fast: true | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
cache: yarn | |
node-version: ${{ matrix.node-version }} | |
- run: yarn install --immutable | |
- run: yarn run pack:all | |
- run: yarn run type | |
- run: yarn run coverage | |
- run: yarn run test:tsm | |
- run: yarn run test:loader | |
- run: yarn run lint | |
pack: | |
name: Pack | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
cache: yarn | |
- run: yarn install --immutable | |
- run: yarn run pack:all | |
docs: | |
name: Docs | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
cache: yarn | |
- run: yarn install --immutable | |
- run: yarn run pack:all | |
- run: cd website && yarn run build |