Skip to content

Bump gh-pages from 3.0.0 to 5.0.0 #92

Bump gh-pages from 3.0.0 to 5.0.0

Bump gh-pages from 3.0.0 to 5.0.0 #92

Workflow file for this run

name: Test feature
on:
push:
branches-ignore:
# will trigger on push events to any branch except master and gh-pages
- master
- gh-pages
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@master
- name: Install Dependencies
run: npm install
- name: Run Tests
env:
CI: true
REACT_APP_MAPS_KEY: ${{ secrets.REACT_APP_MAPS_KEY }}
run: npm test
- name: Build
# only included to catch lint errors, should be updated later to just do that rather than build the whole thing to save time
run: npm run build