Skip to content

[chore] Port Github workflow to pnpm #53

[chore] Port Github workflow to pnpm

[chore] Port Github workflow to pnpm #53

Workflow file for this run

name: CI
on:
push:
branches:
- '*'
jobs:
build:
name: Build, lint, and test on Node ${{ matrix.node }} and ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
node: ['22.x']
os: [ubuntu-latest, windows-latest]
steps:
- name: Config Git (Mainly for Windows)
run: git config --global core.autocrlf false
- name: Checkout repo
uses: actions/checkout@v2
- name: Use Node ${{ matrix.node }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node }}
- uses: pnpm/action-setup@v4
name: Install pnpm
- name: Install deps and build (with cache)
run: pnpm install
- name: Lint
run: pnpm lint
# Did not work without local files with test data
# - name: Test
# run: yarn test --ci --coverage --maxWorkers=2