Skip to content

Commit

Permalink
chore: use older node
Browse files Browse the repository at this point in the history
  • Loading branch information
jenniferarnesen committed Jun 10, 2024
1 parent 4e8aa14 commit a3b0a6a
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/copy-build-to-d2-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,19 +16,20 @@ env:
jobs:
copy-to-d2-ci:
runs-on: ubuntu-latest
if: "!contains(github.event.head_commit.message, '[skip ci]')"
steps:
- name: Checkout code
uses: actions/checkout@v3
with:
token: ${{env.GH_TOKEN}}

- name: Set up Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v1
with:
node-version: '18'
node-version: '16.x'

- name: Install dependencies
run: npm install --frozen-lockfile
run: yarn install --frozen-lockfile

- name: Build package
run: yarn build
Expand Down

0 comments on commit a3b0a6a

Please sign in to comment.