Skip to content

fix: remove --no-frozen-lockfile #3

fix: remove --no-frozen-lockfile

fix: remove --no-frozen-lockfile #3

Workflow file for this run

name: Publish Packages to npmjs
on:
push:
tags:
- '*'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install Node.js
uses: actions/setup-node@v3
with:
node-version: 20
- name: Install pnpm
run: npm install -g pnpm
- name: Build packages
run: pnpm install && pnpm build
- name: Run tests
run: pnpm test
- name: Publish
run: pnpm publish -r --dry-run --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}