chore(release): publish (#97) #75
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: push-release | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
build_test_publish: | |
name: Build, test, and publish release | |
if: "contains(github.event.head_commit.message, 'chore(release): publish')" | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [22.x] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v1 | |
with: | |
node-version: ${{ matrix.node-version }} | |
registry-url: "https://registry.npmjs.org" | |
- run: yarn install --frozen-lockfile | |
- run: yarn lint | |
- run: yarn build | |
- run: yarn test:wasm | |
- run: yarn test:node | |
- run: git config user.name "Mattr CI" | |
- run: git config user.email "npmjs_ci_mattr_public@mattr.global" | |
- run: npm whoami | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NPMJS_TOKEN }} | |
- run: yarn publish:release | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NPMJS_TOKEN }} |