Skip to content
This repository has been archived by the owner on Dec 22, 2024. It is now read-only.

Commit

Permalink
Merge branch 'main' into fix-package-json
Browse files Browse the repository at this point in the history
  • Loading branch information
lachlancollins committed Jul 14, 2024
2 parents eb51b62 + cba6008 commit 6bd8634
Showing 1 changed file with 7 additions and 9 deletions.
16 changes: 7 additions & 9 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
name: CI

on:
push:
branches:
- 'main'

pull_request:

env:
node_version: 20
pnpm_version: 9
Expand All @@ -21,7 +19,7 @@ jobs:
uses: actions/setup-node@v4
with:
node-version: ${{ env.node_version }}
cache: 'pnpm'
cache: "pnpm"
- name: Install dependencies
run: pnpm install
- name: Run format
Expand All @@ -37,7 +35,7 @@ jobs:
uses: actions/setup-node@v4
with:
node-version: ${{ env.node_version }}
cache: 'pnpm'
cache: "pnpm"
- name: Install dependencies
run: pnpm install
- name: Run lint
Expand All @@ -53,7 +51,7 @@ jobs:
uses: actions/setup-node@v4
with:
node-version: ${{ env.node_version }}
cache: 'pnpm'
cache: "pnpm"
- name: Install dependencies
run: pnpm install
- name: Run check
Expand All @@ -69,8 +67,8 @@ jobs:
uses: actions/setup-node@v4
with:
node-version: ${{ env.node_version }}
cache: 'pnpm'
cache: "pnpm"
- name: Install dependencies
run: pnpm install
- name: Build package
run: pnpm build
run: pnpm build

0 comments on commit 6bd8634

Please sign in to comment.