Skip to content

Commit

Permalink
chore(actions): update checkout and setup-node
Browse files Browse the repository at this point in the history
  • Loading branch information
juranki committed Jan 2, 2023
1 parent 763e426 commit 32ce19c
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,16 +12,16 @@ jobs:
strategy:
matrix:
os: [macos-latest]
node-version: [16.x, 18.x]
node-version: [16.x]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: pnpm/[email protected]
with:
version: 7.19
- uses: actions/setup-node@v2
- uses: actions/setup-node@v3
with:
node-version: "16.x"
node-version: 16
# cache: pnpm
- run: node --version
- run: pnpm --version
Expand All @@ -34,13 +34,13 @@ jobs:
name: Deploy demo site
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: pnpm/[email protected]
with:
version: latest
- uses: actions/setup-node@v2
version: 7.19
- uses: actions/setup-node@v3
with:
node-version: "16.x"
node-version: 16
# cache: pnpm
- run: pnpm adapter-deps
- run: pnpm build-adapter
Expand Down

0 comments on commit 32ce19c

Please sign in to comment.