Skip to content

fix: minor dep update of coconfig #30

fix: minor dep update of coconfig

fix: minor dep update of coconfig #30

Workflow file for this run

name: Node.js Package
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
- run: |
npm config set '//registry.npmjs.org/:_authToken' "${NPM_TOKEN}"
yarn install --immutable
env:
NPM_TOKEN: ${{secrets.NPM_TOKEN}}
- run: yarn lint
- run: yarn test --coverage
- run: yarn build
publish-npm:
needs: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
registry-url: https://registry.npmjs.org/
- run: yarn install --immutable
- run: yarn build
- name: Release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
run: |
yarn dlx semantic-release