Skip to content

Bump version

Bump version #31

Workflow file for this run

name: CI
on:
workflow_dispatch:
push:
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
name: test using node ${{ matrix.node-version }}
strategy:
matrix:
node-version: [16, 18, 20]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm run lint
- run: npm run build --if-present
- run: npm run test
- run: npm pack --dry-run
- uses: actions/upload-artifact@v4
if: matrix.node-version == 16 && startsWith(github.ref, 'refs/tags/') && github.event_name != 'pull_request'
with:
name: build
path: dist
publish:
needs: test
runs-on: ubuntu-latest
if: startsWith(github.ref, 'refs/tags/') && github.event_name != 'pull_request'
steps:
- uses: actions/checkout@v4
- uses: actions/download-artifact@v4
with:
name: build
- uses: actions/setup-node@v4
with:
node-version: 16
registry-url: https://registry.npmjs.org/
- run: npm publish --loglevel verbose
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}