Skip to content

fix(release): Build packages before release (#19) #48

fix(release): Build packages before release (#19)

fix(release): Build packages before release (#19) #48

Workflow file for this run

---
name: CI
on:
push:
workflow_call:
concurrency:
group: ci-${{ github.ref_name }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node: [16, 17, 18, 19, 20]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
cache: yarn
- run: yarn install --immutable
- run: yarn compile
- run: yarn lint
- run: yarn test