Skip to content

ci: test fix deploy tokens #9

ci: test fix deploy tokens

ci: test fix deploy tokens #9

Workflow file for this run

name: Publish
on:
push:
tags:
- 'v*'
jobs:
build:
name: Publish
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20, latest]
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 dependencies
run: npm ci
- name: Run tests
run: npm test
- name: Run build
run: npm run build
- name: Publish package
run: npm publish --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}