Skip to content

fix: download draft assets without gh #219

fix: download draft assets without gh

fix: download draft assets without gh #219

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
permissions:
contents: read
concurrency:
group: ci-${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
verify:
name: verify
runs-on: ubuntu-latest
timeout-minutes: 20
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "22"
cache: npm
- name: Install
run: PUPPETEER_SKIP_DOWNLOAD=1 npm ci
- name: Diff check
run: git diff --check
- name: Typecheck
run: npm run typecheck
- name: Build
run: npm run build
- name: Test pipeline
run: npm test