Remove Node.js v16 and add Node.js v21 in ci workflow #377
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: [main] | |
paths: | |
- "**.ts" | |
- "tsconfig.json" | |
- "ava.config.js" | |
- "package.json" | |
- "pnpm-lock.yaml" | |
- ".github/workflows/ci.yml" | |
pull_request: | |
branches: [main] | |
paths: | |
- "**.ts" | |
- "tsconfig.json" | |
- "ava.config.js" | |
- "package.json" | |
- "pnpm-lock.yaml" | |
- ".github/workflows/ci.yml" | |
jobs: | |
ci: | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macOS-latest, windows-latest] | |
node: [18.x, 20.x, 21.x] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node }} | |
- name: Setup pnpm | |
id: pnpm-install | |
uses: pnpm/action-setup@v2 | |
with: | |
run_install: false | |
- name: Get pnpm store directory | |
id: pnpm-cache | |
shell: bash | |
run: | | |
echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT | |
- uses: actions/cache@v3 | |
name: Setup pnpm cache | |
with: | |
path: ${{ steps.pnpm-cache.outputs.STORE_PATH }} | |
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} | |
restore-keys: | | |
${{ runner.os }}-pnpm-store- | |
- name: Install dependencies | |
run: pnpm i --frozen-lockfile | |
- run: pnpm run ci | |
- name: Upload codecov report | |
uses: codecov/codecov-action@v3 | |
if: matrix.node == '16.x' && matrix.os == 'ubuntu-latest' | |
with: | |
file: ./coverage/coverage-final.json | |
flags: unittests | |
fail_ci_if_error: false |