Skip to content

Commit

Permalink
Merge pull request #70 from ras0q/chore/use-pnpm
Browse files Browse the repository at this point in the history
🔧 use pnpm
  • Loading branch information
ras0q authored Sep 9, 2024
2 parents 5273524 + dc949aa commit 8f872db
Show file tree
Hide file tree
Showing 7 changed files with 1,081 additions and 1,648 deletions.
16 changes: 10 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,18 +12,22 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@1e60f620b9541d16bece96c5465dc8ee9832be0b # v4
with:
node-version-file: "package.json"
- run: npm install
- run: npm run build
node-version-file: ".node-version"
cache: "pnpm"
- run: pnpm install
- run: pnpm build

biome:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@1e60f620b9541d16bece96c5465dc8ee9832be0b # v4
with:
node-version-file: "package.json"
- run: npm install
- run: npm run biome -- check .
node-version-file: ".node-version"
cache: "pnpm"
- run: pnpm install
- run: pnpm biome check .
1 change: 1 addition & 0 deletions .node-version
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
v20.9.0
Loading

0 comments on commit 8f872db

Please sign in to comment.