Skip to content

Commit

Permalink
Setup Node
Browse files Browse the repository at this point in the history
  • Loading branch information
ejscribner committed Dec 6, 2024
1 parent 9d327c7 commit 5f42656
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,11 @@ jobs:
steps:
- uses: actions/checkout@v2

- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node_version }}

- name: Install Dependencies
run: yarn install --immutable

Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,11 @@ jobs:
steps:
- uses: actions/checkout@v2

- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node_version }}

- name: Install Dependencies
run: yarn install --immutable

Expand Down

0 comments on commit 5f42656

Please sign in to comment.