Skip to content

Merge pull request #32 from EDMdesigner/release/dep-updates #65

Merge pull request #32 from EDMdesigner/release/dep-updates

Merge pull request #32 from EDMdesigner/release/dep-updates #65

Workflow file for this run

name: Build and deploy to npm
on:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
env:
NO_COLOR: "true"
HUSKY: 0
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 22
- run: npm ci
- run: npm test
- run: npm run build
- uses: JS-DevTools/npm-publish@v1
with:
access: public
token: ${{ secrets.NPM_TOKEN }}