Skip to content

chore: update vite to the latest #30

chore: update vite to the latest

chore: update vite to the latest #30

Workflow file for this run

name: push
on:
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.event_name == 'pull_request' && github.head_ref || github.ref }}
cancel-in-progress: true
env:
NODE_ENV: production
FORCE_COLOR: true
jobs:
check-types:
# If on pull request, run only if coming from forked repos
if: |
!contains(github.event.head_commit.message, 'ci skip') && (
github.event_name == 'push' || github.event.pull_request.head.repo.fork
)
timeout-minutes: 10
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: bootstrap
uses: ./.github/actions/bootstrap
- name: generate
run: yarn ci:generate
- name: typecheck
run: yarn ci:typecheck
check-build:
# If on pull request, run only if coming from forked repos
if: |
!contains(github.event.head_commit.message, 'ci skip') && (
github.event_name == 'push' || github.event.pull_request.head.repo.fork
)
timeout-minutes: 10
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: bootstrap
uses: ./.github/actions/bootstrap
- name: build
run: yarn ci:build
- name: test
run: yarn ci:test