Add two new .env vars to allow dev instance to be anywhere #24
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: Tests in CI | |
on: [push] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
timeout-minutes: 15 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: actions/setup-node@v1 | |
with: | |
node-version: 20.x | |
- run: npm ci | |
- run: npm test |