Skip to content

[CHORE] Migrate yarn to pnpm #18

[CHORE] Migrate yarn to pnpm

[CHORE] Migrate yarn to pnpm #18

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
ci:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v3
- name: Setup Node 16
uses: actions/setup-node@v3
with:
node-version: '16'
cache: 'pnpm'
- name: Install dependencies
run: yarn install
- name: Perform testing
run: yarn test:ci --coverage
- name: Perform build source
run: yarn build