Skip to content

Update common package & fix CI #19

Update common package & fix CI

Update common package & fix CI #19

Workflow file for this run

name: 'CI'
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
on:
pull_request:
types:
- opened
- reopened
- synchronize
jobs:
clean-code-stage:
runs-on: macos-latest
env:
NODE_OPTIONS: '--max_old_space_size=8096'
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: ./.github/composite_actions/initial_setup
- name: audit
timeout-minutes: 4
run: pnpm audit
continue-on-error: true
- name: lint
timeout-minutes: 4
run: pnpm lint
clean-build-stage:
runs-on: macos-latest
needs: clean-code-stage
env:
NODE_OPTIONS: '--max_old_space_size=8096'
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: ./.github/composite_actions/initial_setup
- name: Build
run: pnpm build
- name: Test
run: pnpm test