Skip to content

Commit

Permalink
chore: update publish
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinchappell committed May 28, 2024
1 parent 6cf0f0c commit 64538ac
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,18 +7,22 @@ on:

jobs:
build:
env:
CI: true
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
name: Install pnpm
with:
version: 9
- uses: actions/setup-node@v4
with:
node-version: 20
node-version: 22
- name: Install dependencies
env:
CI: true
run: npm install
run: pnpm install
- name: Test
run: npm test
run: pnpm test
- name: Publish
if: success()
env:
Expand Down

0 comments on commit 64538ac

Please sign in to comment.