Fixing order of installs in npm build
This commit is contained in:
parent
fca761eb60
commit
c1c97a4d3e
14
.github/workflows/push-npm.yml
vendored
14
.github/workflows/push-npm.yml
vendored
@ -16,20 +16,20 @@ jobs:
|
||||
contents: write
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
|
||||
- uses: actions/setup-node@v4
|
||||
with:
|
||||
node-version: 22
|
||||
registry-url: ${{ vars.NPM_REGISTRY }}
|
||||
token: ${{ secrets.NPM_TOKEN }}
|
||||
|
||||
- name: Install npm dependencies
|
||||
run: |
|
||||
npm install -g pnpm
|
||||
pnpm install
|
||||
- run: npm install -g pnpm
|
||||
|
||||
- run: pnpm build_npm
|
||||
- uses: actions/checkout@v4
|
||||
|
||||
- name: Install npm dependencies and build
|
||||
run: |
|
||||
pnpm install
|
||||
pnpm build_npm
|
||||
|
||||
- name: Increment package version and push
|
||||
env:
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user