🐛 update dependencies #273
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: | |
branches: | |
- main | |
- master | |
tags: | |
- '!*' # Do not execute on tags | |
env: | |
NAME: ${{vars.NAME}} | |
EMAIL: ${{vars.EMAIL}} | |
NPM_TOKEN: ${{secrets.NPM_TOKEN}} | |
GITHUB_TOKEN: ${{secrets.GH_TOKEN}} | |
CC_TEST_REPORTER_ID: ${{secrets.CC_TEST_REPORTER_ID}} | |
FORCE_COLOR: 1 | |
jobs: | |
test: | |
strategy: | |
matrix: | |
platform: [ubuntu-latest, windows-latest, macOS-latest] | |
node: [20.x, 22.x] | |
name: Test with Node ${{matrix.node}} on ${{matrix.platform}} | |
runs-on: ${{matrix.platform}} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: ${{matrix.node}} | |
- run: npm ci | |
- run: npm test | |
coverage: | |
name: Publish coverage | |
needs: [test] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 22.x | |
- run: npm ci | |
- run: npm test | |
- uses: paambaati/[email protected] | |
- uses: coverallsapp/github-action@master | |
with: | |
github-token: ${{secrets.GITHUB_TOKEN}} | |
docs: | |
name: Publish docs | |
needs: [test] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 22.x | |
- uses: nodef/[email protected] | |
- run: npm i -g typescript typedoc | |
- run: npm ci | |
- run: npm run publish-docs | |
packages: | |
name: Publish packages | |
needs: [test] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 22.x | |
- uses: nodef/[email protected] | |
with: | |
entries: access = public | |
- run: npm i -g typescript rollup typedoc browserify terser | |
- run: npm ci | |
- run: npm run publish-packages |