Skip to content

RELEASING: Releasing 2 package(s) #62

RELEASING: Releasing 2 package(s)

RELEASING: Releasing 2 package(s) #62

Workflow file for this run

name: integration
on:
push:
branches:
- "**"
jobs:
ci:
name: lint and build
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Cache turbo
uses: actions/cache@v3
with:
path: .turbo
key: ${{ runner.os }}-turbo-${{ github.sha }}
restore-keys: |
${{ runner.os }}-turbo-
- uses: pnpm/action-setup@v2
- name: Setup Node.js environment
uses: actions/setup-node@v3
with:
node-version: 20
cache: "pnpm"
- name: Install dependencies
run: pnpm install
- name: Lint
run: pnpm lint
- name: Build
run: pnpm build
- name: Check changeset
run: pnpm changeset status