Skip to content

Commit

Permalink
-node 12
Browse files Browse the repository at this point in the history
  • Loading branch information
drom committed Jan 5, 2024
1 parent 0e7bf8f commit d98ddf0
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 22 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/linux.yml
Expand Up @@ -5,19 +5,19 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12, 14, 16, 18, 20]
node-version: [14, 16, 18, 20, 21]
steps:
- uses: actions/checkout@v1
- 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 }}
- name: npm install, build, and test
run: |
npm i
npm test
- name: Coveralls
uses: coverallsapp/github-action@master
uses: coverallsapp/github-action@v2
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
env:
Expand Down
12 changes: 3 additions & 9 deletions .github/workflows/macos.yml
Expand Up @@ -5,20 +5,14 @@ jobs:
runs-on: macOS-latest
strategy:
matrix:
node-version: [12, 14, 16, 18, 20]
node-version: [14, 16, 18, 20, 21]
steps:
- uses: actions/checkout@v1
- 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 }}
- name: npm install, build, and test
run: |
npm i
npm test
- name: Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
env:
CI: true
12 changes: 3 additions & 9 deletions .github/workflows/windows.yml
Expand Up @@ -5,20 +5,14 @@ jobs:
runs-on: windows-latest
strategy:
matrix:
node-version: [12, 14, 16, 18, 20]
node-version: [14, 16, 18, 20, 21]
steps:
- uses: actions/checkout@v1
- 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 }}
- name: npm install, build, and test
run: |
npm i
npm test
- name: Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
env:
CI: true

0 comments on commit d98ddf0

Please sign in to comment.