Skip to content

fix: #18 Each instance should have its dependencies applied correctly #53

fix: #18 Each instance should have its dependencies applied correctly

fix: #18 Each instance should have its dependencies applied correctly #53

Workflow file for this run

name: CI
on:
pull_request:
branches:
- main
- 'v*'
jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup pnpm
uses: pnpm/action-setup@v2.2.4
with:
version: 7
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: '16'
cache: 'pnpm'
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Build
run: |
pnpm build
- name: Test
run: |
pnpm test