Skip to content

Commit

Permalink
feat: initial refactor for v4
Browse files Browse the repository at this point in the history
  • Loading branch information
tlawrie committed Aug 7, 2024
1 parent 1fdfd9d commit 74d0642
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,20 @@ jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js
- name: Checkout
uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v4
with:
version: 8
run_install: false
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 18.x
cache: "pnpm"
- run: pnpm install --frozen-lockfile
- name: Install dependencies
run: pnpm install --frozen-lockfile
- run: pnpm run build --if-present
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
Expand Down

0 comments on commit 74d0642

Please sign in to comment.