fix: exit 1 on provider errors in non-interactive mode #36
Workflow file for this run
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: Dashboard Tests with nitric start | |
on: | |
push: | |
branches: | |
- main | |
- develop | |
pull_request: | |
concurrency: | |
group: ci-dash-start-tests-${{ github.ref_name }} | |
cancel-in-progress: true | |
env: | |
GOPROXY: https://proxy.golang.org | |
FATHOM_SITE: FAKE1234 | |
jobs: | |
nitric-dashboard: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
path: cli | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 21 | |
- name: Lint Dashboard | |
working-directory: cli/pkg/dashboard/frontend | |
run: | | |
yarn install | |
yarn format:check | |
yarn lint --quiet | |
- name: Setup Go | |
uses: actions/setup-go@v3 | |
with: | |
go-version: 1.22 | |
- name: Build Nitric | |
run: | | |
cd ${{ github.workspace }}/cli | |
make build | |
mv bin/nitric $(go env GOPATH)/bin/nitric | |
- name: Run nitric start with test-app in the background | |
run: | | |
cd ${{ github.workspace }}/cli/pkg/dashboard/frontend/test-app | |
yarn install | |
nitric start --ci & | |
- name: Run Tests | |
uses: cypress-io/github-action@v5 | |
with: | |
install: false | |
wait-on: "http://localhost:49152" | |
# wait for 3 minutes for the server to respond | |
wait-on-timeout: 180 | |
working-directory: cli/pkg/dashboard/frontend | |
browser: chrome | |
- uses: actions/upload-artifact@v4 | |
if: failure() | |
with: | |
name: cypress-screenshots | |
path: cli/pkg/dashboard/frontend/cypress/screenshots | |
- uses: actions/upload-artifact@v4 | |
if: failure() | |
with: | |
name: cypress-videos | |
path: cli/pkg/dashboard/frontend/cypress/videos |