Skip to content

chore: add CI action #1

chore: add CI action

chore: add CI action #1

Workflow file for this run

name: Test PR Build
on:
pull_request:
types: [opened, reopened, synchronize, ready_for_review]
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
jobs:
test:
if: github.event.pull_request.draft == false
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Node
uses: actions/setup-node@v4
with:
node-version: lts
cache: yarn
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Test build
run: yarn build