Skip to content

Merge pull request #59 from tidev/dependabot/npm_and_yarn/rollup/plug… #223

Merge pull request #59 from tidev/dependabot/npm_and_yarn/rollup/plug…

Merge pull request #59 from tidev/dependabot/npm_and_yarn/rollup/plug… #223

Workflow file for this run

name: Tests
on: [push, pull_request]
concurrency:
cancel-in-progress: ${{ github.event_name == 'pull_request' }}
group: ${{ github.workflow }}-${{ github.ref }}
jobs:
test:
name: Test on node ${{ matrix.node }}
runs-on: windows-latest
strategy:
fail-fast: false
matrix:
node: [18, 20, 22]
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
- name: Install pnpm
uses: pnpm/action-setup@v2
with:
version: latest
- name: Install dependencies
run: pnpm install
- name: Lint
run: pnpm check
- name: Build
run: pnpm build
- name: Run tests
run: pnpm coverage