Skip to content

Commit

Permalink
Updates CI to use node v16 and dotnet 5
Browse files Browse the repository at this point in the history
Playwright CLI currently needs net5 to execute. There is a PR in the works to get it running on net6 but until then the recommended steps it to have both installed.
  • Loading branch information
phil-scott-78 committed Dec 1, 2021
1 parent 81b868e commit 88075d0
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,17 @@ jobs:
- name: Checkout
uses: actions/checkout@master

- name: Setup dotnet 6.0.100
- name: Setup dotnet 5 and 6.0.100
uses: actions/setup-dotnet@v1
with:
dotnet-version: 6.0.100
dotnet-version: |
5.0.x
6.0.100
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: '14'
node-version: '16'

- name: Cache dependencies
uses: actions/cache@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: '14'
node-version: '16'

- name: Cache dependencies
uses: actions/cache@v2
Expand Down

0 comments on commit 88075d0

Please sign in to comment.