Skip to content

Commit

Permalink
chore: Test env on Node 18.18.2
Browse files Browse the repository at this point in the history
  • Loading branch information
PartMan7 authored Oct 28, 2024
1 parent 6aaf8b8 commit 8f56911
Showing 1 changed file with 14 additions and 15 deletions.
29 changes: 14 additions & 15 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,30 +2,29 @@ name: Validity

on:
push:
branches: [ main ]
branches: [main]
paths-ignore:
- 'LICENSE'
- 'README.md'
- 'LICENSE'
- 'README.md'
pull_request:
branches: [ main, dev ]
branches: [main]
paths-ignore:
- 'LICENSE'
- 'README.md'
- 'LICENSE'
- 'README.md'

jobs:
test:

strategy:
matrix:
node-version: [16.x]
node-version: [18.18.2]
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}

steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm test
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm test

0 comments on commit 8f56911

Please sign in to comment.