Skip to content

Commit

Permalink
ci: pin node version
Browse files Browse the repository at this point in the history
  • Loading branch information
dohaki committed May 3, 2024
1 parent 06ed75a commit cd5cde9
Show file tree
Hide file tree
Showing 3 changed files with 100 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ jobs:
- name: Checkout repo
uses: actions/checkout@v2

- name: Use Node ${{ matrix.node }}
- name: Use Node
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node }}
node-version: "16.x"

- name: Install deps and build (with cache)
uses: bahmutov/npm-install@v1
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ jobs:
- name: Checkout repo
uses: actions/checkout@v2

- name: Use Node ${{ matrix.node }}
- name: Use Node
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node }}
node-version: "16.x"

- name: Install Additional dependencies
run: |
Expand Down
Loading

0 comments on commit cd5cde9

Please sign in to comment.