Skip to content

Fill in missing countries and update privacy policy. #187

Fill in missing countries and update privacy policy.

Fill in missing countries and update privacy policy. #187

Workflow file for this run

name: Tests
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: asdf_install
uses: asdf-vm/actions/install@v1
- name: Cache node modules
uses: actions/cache@v2
env:
cache-name: cache-node-modules
with:
path: ~/.npm
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-build-${{ env.cache-name }}-
${{ runner.os }}-build-
${{ runner.os }}-
- name: Install
run: npm ci
env:
AWS_DEFAULT_REGION: us-east-1
- name: Lint
run: npm run lint
- name: Test
run: npm test
- name: Build
run: npm run build