Drop node6 from CI e2e-test due to unknown bug in npm cli #11
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: unit test | |
on: | |
push: | |
branches: [master, ci/**] | |
pull_request: | |
branches: [master, ci/**] | |
workflow_dispatch: | |
# Keep this to allow for triggering manually | |
permissions: | |
contents: write | |
pages: write | |
jobs: | |
unit-test: | |
strategy: | |
matrix: | |
node-version: | |
# currently devDependencies require node>=16 | |
# - 16 # skip | |
- 18 | |
os: | |
- ubuntu-22.04 | |
- windows-2022 | |
- macos-12 | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Install | |
run: npm install | |
- name: Lint | |
run: npm run lint | |
- name: Test | |
run: npm run test:cov | |
- name: Update Coverage Badge | |
if: ${{ matrix.os == 'ubuntu-22.04' && matrix.node-version == 18 }} | |
uses: we-cli/coverage-badge-action@main |