Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: detect pnpm from package.json #25

Merged
merged 3 commits into from
Jul 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 10 additions & 4 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
name: CI

on:
push:
branches:
- main
pull_request:

jobs:
test:
name: Test
Expand All @@ -12,20 +14,24 @@ jobs:
matrix:
node-version: [18]
steps:
- name: Checkout
uses: actions/checkout@v4
Comment on lines +17 to +18
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This has to be run before pnpm/action-setup so that package.json is present on file system and version can be resolved from there.


- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}

- name: Setup
uses: pnpm/action-setup@v4
with:
version: 8
- name: Checkout
uses: actions/checkout@v4

- name: Install dependencies
run: pnpm install

- name: Build
run: pnpm build

- name: Lint
run: pnpm lint

- name: Test
run: pnpm test
2 changes: 1 addition & 1 deletion .tool-versions
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
pnpm 9.4.0
pnpm 8.15.9
nodejs 18.20.3
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
],
"author": "Dominic Elm",
"main": "dist/index.js",
"packageManager": "[email protected]",
"scripts": {
"build": "rm -rf dist && tsc -b",
"test": "vitest run",
Expand Down
Loading