Skip to content

docs: 新增春节返乡地图 #1062

docs: 新增春节返乡地图

docs: 新增春节返乡地图 #1062

Workflow file for this run

name: Build & Test
on: [pull_request]
jobs:
ci:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- name: Install Playwright browsers
run: npx playwright install --with-deps
- run: yarn
- run: yarn build
- run: yarn test:e2e
- name: Upload snapshots to GitHub Actions Artifacts
if: ${{ always() }}
uses: actions/upload-artifact@v3
with:
name: snapshots
path: |
__tests__/e2e/snapshots
retention-days: 1