Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 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
4 changes: 2 additions & 2 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
with:
node-version: ${{ matrix.node-version }}
- name: Install pnpm and dependencies
uses: apify/workflows/pnpm-install@main
uses: apify/actions/pnpm-install@v1.1.1
- name: Run Tests
run: pnpm test
env:
Expand All @@ -41,5 +41,5 @@ jobs:
with:
node-version: 24
- name: Install pnpm and dependencies
uses: apify/workflows/pnpm-install@main
uses: apify/actions/pnpm-install@v1.1.1
- run: pnpm lint
2 changes: 1 addition & 1 deletion .github/workflows/publish-to-npm.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
registry-url: 'https://registry.npmjs.org'

- name: Install pnpm and dependencies
uses: apify/workflows/pnpm-install@main
uses: apify/actions/pnpm-install@v1.1.1

- name: Publish to NPM (@latest)
if: inputs.dist-tag == 'latest'
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
node-version: ${{ matrix.node-version }}

- name: Install pnpm and dependencies
uses: apify/workflows/pnpm-install@main
uses: apify/actions/pnpm-install@v1.1.1

- name: Run Tests
run: pnpm test
Expand All @@ -61,7 +61,7 @@ jobs:
node-version: 24

- name: Install pnpm and dependencies
uses: apify/workflows/pnpm-install@main
uses: apify/actions/pnpm-install@v1.1.1

- name: Configure git
run: |
Expand All @@ -84,7 +84,7 @@ jobs:
run: echo "sha=$(git rev-parse HEAD)" >> $GITHUB_OUTPUT

- name: Publish packages
uses: apify/workflows/execute-workflow@main
uses: apify/actions/execute-workflow@v1.1.1
with:
workflow: publish-to-npm.yaml
inputs: >
Expand Down
Loading