Files
granblue-party/node_modules/dom-to-image-more/.github/workflows/verify.yml
2026-04-13 07:15:44 +00:00

31 lines
739 B
YAML

name: build
on:
push:
branches: [main, v2.x]
pull_request:
branches: [main, v2.x]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Setup Chrome
uses: browser-actions/setup-chrome@v1
- name: Check dependencies
run: npm ci --dry-run
- name: Install dependencies
run: npm ci
- name: Run build only
run: npm run build:ci