Skip to content

[upload wizard] improve UX, show changes on map, add per-feature diff #30

[upload wizard] improve UX, show changes on map, add per-feature diff

[upload wizard] improve UX, show changes on map, add per-feature diff #30

Workflow file for this run

name: build
on: [push]
jobs:
ci:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
steps:
- name: Checkout 🛎️
uses: actions/checkout@v2
with:
persist-credentials: false
- name: Use Node.js ${{ matrix.node-version }} 🏎
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install 📶
run: |
yarn
env:
CI: true
- name: Lint 💚
run: |
yarn lint
env:
CI: true
- name: Test 🧪
run: yarn test
- name: Build 🛠
run: |
yarn build
env:
CI: true
- name: Deploy Client ⚛
if: ${{ github.ref == 'refs/heads/main' }}
uses: JamesIves/github-pages-deploy-action@releases/v3
with:
ACCESS_TOKEN: ${{ secrets.ACCESS_TOKEN }}
BRANCH: gh-pages
FOLDER: build