Skip to content

chore: use github actions instead of travis #3

chore: use github actions instead of travis

chore: use github actions instead of travis #3

Workflow file for this run

name: CI
on:
push:
branches: [ main, master ]
pull_request:
branches: [ main, master ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [lts/*, latest]
steps:
- uses: actions/checkout@v4
- name: Setup pnpm
uses: pnpm/action-setup@v2
with:
version: latest
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'pnpm'
- name: Install global dependencies
run: |
pnpm add -g lerna typescript
- name: Install dependencies
run: |
pnpm install
lerna bootstrap
- name: Run tests
run: pnpm test
- name: Upload coverage
run: pnpm run coverage