Skip to content

Commit

Permalink
chore(ci): do not hard code node versions (#417)
Browse files Browse the repository at this point in the history
  • Loading branch information
SimenB authored Jan 28, 2022
1 parent 8c07335 commit d68080c
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: "16"
node-version: "lts/*"
cache: npm
- name: Install dependencies
run: |
Expand All @@ -33,7 +33,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: "16"
node-version: "lts/*"
cache: npm
- name: Install dependencies
run: |
Expand All @@ -50,7 +50,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: "16"
node-version: "lts/*"
cache: npm
- name: Install dependencies
run: |
Expand All @@ -71,7 +71,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: "16"
node-version: "lts/*"
cache: npm
- name: Install dependencies
run: |
Expand All @@ -91,7 +91,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: "14"
node-version: "lts/*"
cache: npm
- name: Install dependencies
run: |
Expand Down

0 comments on commit d68080c

Please sign in to comment.