Skip to content

dont skip tests

dont skip tests #15

Workflow file for this run

name: Publish to NPM
on:
push:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: "18.x"
registry-url: "https://registry.npmjs.org"
- name: Install Dependencies
run: yarn install
- name: Run Tests
run: yarn test
- name: Build
run: yarn build
- name: Publish to NPM
run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}