Skip to content

style: fix lint

style: fix lint #4

Workflow file for this run

on:
push:
tags:
- "v*"
name: Publish
jobs:
build:
name: Build & Publish
runs-on: "ubuntu-latest"
steps:
- uses: actions/checkout@v4
# Setup .npmrc file to publish to npm
- uses: actions/setup-node@v4
with:
node-version: "20.x"
registry-url: "https://registry.npmjs.org"
- name: Install Dependencies
run: npm ci
- name: Build
run: npm run build
- name: Lint
run: npm run lint
- name: Test
run: npm run test
- name: Publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
run: npm publish