Skip to content

Commit

Permalink
EDD-68: Updates node to v22 (lts/jod) (#53)
Browse files Browse the repository at this point in the history
  • Loading branch information
macrouch authored Dec 3, 2024
1 parent 656e109 commit 4628a87
Show file tree
Hide file tree
Showing 6 changed files with 366 additions and 316 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
strategy:
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
node-version: ['lts/hydrogen']
node-version: ['lts/jod']

steps:
- name: Check out Git repository
Expand Down
14 changes: 10 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: ['lts/hydrogen']
node-version: ['lts/jod']
steps:
- name: Checkout code
uses: actions/checkout@v4
Expand Down Expand Up @@ -39,7 +39,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: ['lts/hydrogen']
node-version: ['lts/jod']
steps:
- name: Checkout code
uses: actions/checkout@v4
Expand Down Expand Up @@ -69,7 +69,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: ['lts/hydrogen']
node-version: ['lts/jod']
steps:
- name: Checkout code
uses: actions/checkout@v4
Expand Down Expand Up @@ -98,10 +98,16 @@ jobs:
uses: codecov/codecov-action@v4
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
tests-passed:
needs: [jest]
runs-on: ubuntu-latest
steps:
- name: All Tests Have Passed
run: 'echo true'

sync:
if: success() && github.ref == 'refs/heads/main' # only run on main success
needs: [jest] # only run after jest and cypress jobs complete
needs: [tests-passed] # only run after all test jobs complete
runs-on: ubuntu-latest
steps:
- name: Checkout code
Expand Down
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
lts/hydrogen
lts/jod
Loading

0 comments on commit 4628a87

Please sign in to comment.