Skip to content

Commit

Permalink
ci: update Node versions to 18, 20
Browse files Browse the repository at this point in the history
  • Loading branch information
hsluoyz committed Jan 23, 2024
1 parent a5082cd commit 7553c6c
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@ jobs:
strategy:
fail-fast: false
matrix:
node-version: [^16, ^18]
node-version: [^18, ^20]
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Setup MongoDB
run: bash ./.github/mongo_setup.sh

- uses: actions/setup-node@v1
- uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}

Expand All @@ -33,15 +33,15 @@ jobs:
strategy:
fail-fast: false
matrix:
node-version: [^16, ^18]
node-version: [^18, ^20]
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Setup MongoDB
run: bash ./.github/mongo_setup.sh

- uses: actions/setup-node@v1
- uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}

Expand Down Expand Up @@ -70,7 +70,7 @@ jobs:
parallel-finished: true

- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Install Dependency
run: yarn install --ignore-engines
Expand Down

0 comments on commit 7553c6c

Please sign in to comment.