Skip to content

Commit

Permalink
chore: install nodejs using asdf-vm/actions
Browse files Browse the repository at this point in the history
  • Loading branch information
faergeek committed Mar 13, 2024
1 parent 8a92b5a commit 3bc14f0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: asdf-vm/actions/install@v3
- uses: pnpm/action-setup@v3
- uses: actions/setup-node@v4
with:
cache: pnpm
node-version-file: .tool-versions
- run: pnpm install --frozen-lockfile
- run: pnpm run format:check
- run: pnpm run lint
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/commitlint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ jobs:
with:
fetch-depth: 0
ref: ${{ github.event.pull_request.head.sha }}
- uses: asdf-vm/actions/install@v3
- uses: pnpm/action-setup@v3
- uses: actions/setup-node@v4
with:
cache: pnpm
node-version-file: .tool-versions
- run: pnpm install --frozen-lockfile
- run: pnpm exec commitlint --verbose --from=remotes/origin/$GITHUB_BASE_REF
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: asdf-vm/actions/install@v3
- uses: pnpm/action-setup@v3
- uses: actions/setup-node@v4
with:
cache: pnpm
node-version-file: .tool-versions
- run: pnpm install --frozen-lockfile
- run: pnpm run build
- run: pnpm exec semantic-release
Expand Down

0 comments on commit 3bc14f0

Please sign in to comment.