Add select area #35
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: Your Workflow Name | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Node.js | |
uses: actions/setup-node@v2 | |
with: | |
node-version: 14 | |
- name: Install Dependencies | |
run: npm install | |
- name: Build | |
run: npm run build | |
env: | |
VITE_KEY: ${{ secrets.VITE_GOOGLE_MAP_API_KEY }} | |
- name: Test | |
run: npm run test | |
env: | |
VITE_KEY: ${{ secrets.VITE_GOOGLE_MAP_API_KEY }} |