Skip to content

Merge pull request #76 from octet-stream/dependabot/github_actions/ac… #404

Merge pull request #76 from octet-stream/dependabot/github_actions/ac…

Merge pull request #76 from octet-stream/dependabot/github_actions/ac… #404

Workflow file for this run

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@v4
- name: Setup Node.js
uses: actions/setup-node@v4
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@v4
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 == '20.x' && matrix.os == 'ubuntu-latest'
with:
file: ./coverage/coverage-final.json
flags: unittests
fail_ci_if_error: false