Skip to content

Commit

Permalink
Use Node 18 in GitHub Actions. (UniversalViewer#1033)
Browse files Browse the repository at this point in the history
  • Loading branch information
demiankatz committed May 15, 2024
1 parent a9e04c8 commit ce0a18c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
# @TODO add 16/18
node: [ '16' ]
node: [ '18' ]

name: Node ${{ matrix.node }} build
steps:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: Setup node
uses: actions/setup-node@v4
with:
node-version: '16.x'
node-version: '18.x'
- run: npm ci
- run: npm run build

Expand All @@ -38,7 +38,7 @@ jobs:
- name: Setup node
uses: actions/setup-node@v4
with:
node-version: '16.x'
node-version: '18.x'

- name: Set tag
id: tagName
Expand Down

0 comments on commit ce0a18c

Please sign in to comment.