Skip to content

Resources: New palettes of Chongqing #1100

Resources: New palettes of Chongqing

Resources: New palettes of Chongqing #1100

Workflow file for this run

name: Resources and Code Check
on:
workflow_dispatch:
pull_request:
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '20'
- name: Resources check
run: |
npm install
npm run test
npm run build
working-directory: ./package
- name: Code check
run: |
npm install
npm run lint
npm run test