Drop Node.js 16 support and move to ESM #288
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: Test | |
on: | |
push: | |
branches: | |
- '**' | |
tags-ignore: | |
- 'v*' | |
pull_request: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node: [18.0.0, 18.x, 20.x, 21.x] | |
steps: | |
- name: Checkout 🛎️ | |
uses: actions/checkout@v4 | |
- name: Node 🧰 | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node }} | |
- name: Install 📦 | |
run: yarn --immutable | |
- name: Lint 🔍 | |
run: yarn lint | |
- name: Test 🐛 | |
run: yarn test | |
coverage: | |
needs: [test] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout 🛎️ | |
uses: actions/checkout@v4 | |
- name: Node 🧰 | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20.x | |
- name: Install 📦 | |
run: yarn --immutable | |
- name: Coverage 🌈 | |
run: yarn coverage | |
- name: Export `coverage` | |
uses: coverallsapp/github-action@v2.2.3 | |
with: | |
github-token: ${{ secrets.github_token }} | |
file: ./coverage/lcov.info # optional (default value) | |
- name: Upload `coverage` artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: coverage | |
path: coverage/lcov-report | |
# stryker: | |
# needs: [test] | |
# runs-on: ubuntu-latest | |
# steps: | |
# - name: Checkout 🛎️ | |
# uses: actions/checkout@v3 | |
# - name: Node 🧰 | |
# uses: actions/setup-node@v3 | |
# with: | |
# node-version: 18.x | |
# - name: Install 📦 | |
# run: yarn --immutable | |
# - name: Stryker 👾 | |
# run: yarn stryker | |
# - name: Upload `stryker` artifact | |
# uses: actions/upload-artifact@v3 | |
# with: | |
# name: stryker | |
# path: reports/mutation/html |