add https:// prefix to API_BASE #10
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: Build & Test | |
on: | |
push: | |
branches: "**" | |
pull_request: | |
branches: [main] | |
jobs: | |
build-test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: setup test project | |
run: yarn | |
- name: build test project | |
run: yarn build | |
- name: lint | |
run: yarn lint | |
- name: test | |
run: yarn test:ci | |
- name: test docker-entrypoint.sh patching | |
run: ./scripts/test-docker-entrypoint.sh | |
- name: build docker image | |
run: yarn docker:build | |
- name: verify container | |
run: yarn docker:verify | |
- name: verify container on different base url | |
run: yarn docker:verify-with-overwrites | |