🐛 upgrade package #50
This file contains hidden or 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@v3 | |
| - uses: actions/setup-node@v2 | |
| 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@v3 | |
| # - uses: actions/setup-node@v2 | |
| # with: | |
| # node-version: 22.x | |
| # - run: npm ci | |
| # - run: npm test | |
| # - uses: paambaati/codeclimate-action@v3.0.0 | |
| # - 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@v3 | |
| - uses: actions/setup-node@v2 | |
| with: | |
| node-version: 22.x | |
| - uses: nodef/git-config.action@v1.0.0 | |
| - 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@v3 | |
| - uses: actions/setup-node@v2 | |
| with: | |
| node-version: 22.x | |
| - uses: nodef/npm-config.action@v1.0.0 | |
| with: | |
| entries: access = public | |
| - run: npm i -g typescript rollup browserify terser typedoc | |
| - run: npm ci | |
| - run: npm run publish-packages |