Skip to content

Merge pull request #1 from pior-labs/agent/initial-platform-native-sc… #7

Merge pull request #1 from pior-labs/agent/initial-platform-native-sc…

Merge pull request #1 from pior-labs/agent/initial-platform-native-sc… #7

Workflow file for this run

name: CI
on:
pull_request:
push:
branches: [main]
permissions:
contents: read
packages: read
jobs:
validate:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 22
- name: Enable pnpm
run: corepack enable
- name: Install dependencies
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: pnpm install --no-frozen-lockfile
- name: Typecheck
run: pnpm typecheck
- name: Build
run: pnpm build