29 lines
633 B
YAML
29 lines
633 B
YAML
name: Explorer_build&test_on_PR
|
|
on:
|
|
pull_request:
|
|
branches:
|
|
- master
|
|
paths:
|
|
- 'explorer/**'
|
|
jobs:
|
|
check-explorer:
|
|
runs-on: ubuntu-latest
|
|
|
|
defaults:
|
|
run:
|
|
working-directory: explorer
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
with:
|
|
ref: ${{ github.event.pull_request.head.sha }}
|
|
- uses: actions/setup-node@v3
|
|
with:
|
|
node-version: '14'
|
|
cache: 'npm'
|
|
cache-dependency-path: explorer/package-lock.json
|
|
- run: npm i -g npm@7
|
|
- run: npm ci
|
|
- run: npm run format
|
|
- run: npm run build
|
|
- run: npm run test
|