Skip to content

chore: add Node 22 CI #465

chore: add Node 22 CI

chore: add Node 22 CI #465

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node-version:
- 10.x
- 12.x
- 14.x
- 16.x
- 18.x
- 20.x
- 22.x
steps:
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- uses: actions/checkout@v2
- run: npm ci
- run: npm run test:microtask
- run: npm run test:immediate
if: ${{ matrix.node-version != '10.x' }}
- run: npx c8 --reporter=lcov mocha
- uses: coverallsapp/github-action@master
if: ${{ matrix.node-version != '10.x' }}
with:
github-token: ${{ secrets.github_token }}
flag-name: run-${{ matrix.node-version }}
parallel: true
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/setup-node@v2
with:
node-version: 16.x
- uses: actions/checkout@v2
- run: npm ci
- run: npm run lint
package:
runs-on: ubuntu-latest
steps:
- uses: actions/setup-node@v2
with:
node-version: 16.x
- uses: actions/checkout@v2
- run: npm ci
- run: npm pack
- run: tar -xzf asynciterator-*.tgz
- run: npx tsc package/dist/asynciterator.d.ts
- run: |
pushd package
node -e 'require(".")'
echo 'import { AsyncIterator } from "asynciterator"' > test.mjs;
node test.mjs;
popd
coveralls:
needs: test
runs-on: ubuntu-latest
steps:
- name: Consolidate test coverage from different jobs
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.github_token }}
parallel-finished: true
docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 16.x
- run: npm ci --ignore-scripts
- run: npm run docs
- uses: actions/upload-artifact@v2
with:
name: docs
path: |
index.html
docs
retention-days: 1
gh-pages:
needs:
- lint
- test
- package
- docs
runs-on: ubuntu-latest
if: startsWith(github.ref, 'refs/tags/v')
steps:
- uses: actions/download-artifact@v2
with:
name: docs
- uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: .