Skip to content

Resources: New templates of Beijing Subway #928

Resources: New templates of Beijing Subway

Resources: New templates of Beijing Subway #928

Workflow file for this run

name: Resources and Code Check
on:
pull_request:
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
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