Skip to content

build: publish on tag #2

build: publish on tag

build: publish on tag #2

Workflow file for this run

on: push
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/cache@v4
with:
key: npm
path: |
node_modules/
- run: npm install
- run: npm run lint
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/cache@v4
with:
key: npm
path: |
node_modules/
- run: npm install
- run: npm run mocha