limiting to node 16+ #24
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: CI | |
on: | |
push: | |
pull_request: | |
branches: [ master ] | |
env: | |
FORCE_COLOR: 1 | |
jobs: | |
test: | |
name: test (${{matrix.os}}, node@${{matrix.node}}) | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
node: [16, 18, 20, 22] | |
os: [ubuntu-latest, windows-latest, macOS-latest] | |
# these are only excluded so we don't run so many jobs | |
# they are more expensive and less likely to be a problem if the rest pass | |
exclude: | |
- os: macOS-latest | |
node: 16 | |
- os: windows-latest | |
node: 18 | |
- os: macOS-latest | |
node: 20 | |
- os: ubuntu-latest | |
node: 22 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Use Node.js ${{ matrix.node }} | |
uses: actions/setup-node@v2 | |
with: | |
node-version: ${{ matrix.node }} | |
registry-url: https://registry.npmjs.org/ | |
- run: npm install | |
- run: npm test | |
- name: inspect tarball | |
run: npm pack | |
publish: | |
runs-on: ubuntu-latest | |
if: startsWith(github.ref, 'refs/tags/') && github.event_name != 'pull_request' | |
needs: test | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Use Node.js 14 | |
uses: actions/setup-node@v2 | |
with: | |
node-version: 14 | |
registry-url: https://registry.npmjs.org/ | |
- run: npm install | |
- run: npm publish | |
env: | |
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}} | |
- name: Output logs | |
if: ${{ always() }} | |
uses: actions/upload-artifact@v2 | |
with: | |
name: npm-logs | |
path: /home/runner/.npm/_logs/** |