Change module option in tsconfig to node16 to satisfy ts complains #189
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" | |
- "tsconfig.cjs.json" | |
- "tsconfig.esm.json" | |
- "ava.config.cjs" | |
- "package.json" | |
- "pnpm-lock.yaml" | |
- ".github/workflows/ci.yml" | |
pull_request: | |
branches: [main] | |
paths: | |
- "**.ts" | |
- "tsconfig.json" | |
- "tsconfig.cjs.json" | |
- "tsconfig.esm.json" | |
- "ava.config.cjs" | |
- "package.json" | |
- "pnpm-lock.yaml" | |
- ".github/workflows/ci.yml" | |
jobs: | |
ci: | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macOS-latest, windows-latest] | |
node: [16.x, 18.x, 20.x] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- 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: Codecov | |
uses: codecov/codecov-action@v3 | |
if: matrix.node == '16.x' && matrix.os == 'ubuntu-latest' | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
file: ./coverage/coverage-final.json | |
flags: unittests | |
verbose: true | |
fail_ci_if_error: false |