Skip to content

Commit

Permalink
ci: include lts node version matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
Jayllyz authored and plantain-00 committed May 3, 2024
1 parent 2089d4f commit 7636d03
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/github-ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,23 @@ name: Github CI

on: [push]

permissions:
contents: read
pull-requests: read

jobs:
build:

runs-on: ubuntu-latest

strategy:
matrix:
node-version: [18.x]
node-version: [18, 20, 22]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: git fetch --unshallow || true
Expand Down

0 comments on commit 7636d03

Please sign in to comment.