Update CODEOWNERS #10
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# github workflow that builds the project using npm run build | |
# and then deploys it to the gh-pages branch | |
name: Build and Deploy | |
on: | |
push: | |
branches: | |
- master | |
env: | |
MAP_STYLE: ${{ secrets.MAP_STYLE }} | |
MAP_TOKEN: ${{ secrets.MAP_TOKEN }} | |
jobs: | |
build-and-deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version-file: ".nvmrc" | |
- run: npm ci | |
- run: npm run build:ci | |
- name: Deploy | |
uses: JamesIves/github-pages-deploy-action@v4 | |
with: | |
folder: build # The folder the action should deploy. |