Skip to content

Catch up to upstream #2

Catch up to upstream

Catch up to upstream #2

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '20.x'
registry-url: 'https://npm.pkg.github.com'
- uses: pnpm/action-setup@v2
- name: Install
run: pnpm install
- name: Lint
run: pnpm lint
- name: Build
run: pnpm build
- name: Test
run: pnpm test
- name: Release
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }}
run: ./release.sh