Bump gh-pages from 3.0.0 to 5.0.0 #92
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
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 |