Skip to content

Build and test package #93

Build and test package

Build and test package #93

Workflow file for this run

name: Build and dry-run publish to npmjs
on: push
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '18.x'
registry-url: 'https://registry.npmjs.org'
- run: npm install -g npm
- run: npm ci
# Build to verify
- run: npm run build
# Dry-run a publish to log package contents
- run: npm publish --dry-run