Skip to content

chore: fixes for eslint and package lock #1

chore: fixes for eslint and package lock

chore: fixes for eslint and package lock #1

Workflow file for this run

name: tag-publish
on:
push:
tags:
- '*'
jobs:
build:
name: Check package
uses: flaviostutz/gh-makefile/.github/workflows/make-ci.yml@main
with:
working-directory: ./
tooling: node
tooling-version: 18
stage: prd
target-build: true
target-lint: true
target-unit-tests: true
publish:
name: Publish to npmjs.org
runs-on: ubuntu-latest
needs: build
environment: npmjs-registry
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v4
with:
node-version: '18.x'
registry-url: 'https://registry.npmjs.org'
- run: make build
- run: make publish
env:
NPM_ACCESS_TOKEN: ${{ secrets.NPM_ACCESS_TOKEN }}