Skip to content

skip collection of attempts when maxAttempts is Infinity #215

skip collection of attempts when maxAttempts is Infinity

skip collection of attempts when maxAttempts is Infinity #215

Workflow file for this run

name: Continuous Integration
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
name: Build & Test
runs-on: "ubuntu-latest"
steps:
- uses: actions/checkout@v2
- name: Enable docker layer cache
uses: satackey/[email protected]
continue-on-error: true
- name: Pull docker images
run: docker-compose pull
continue-on-error: true
- name: Lint the source
run: docker compose run --rm --no-TTY builder yarn lint
- name: Transpile into dist
run: docker compose run --rm --no-TTY builder yarn build
- name: Run tests
run: docker compose run --rm --no-TTY runner yarn test
- name: Stop containers
if: always()
run: docker compose down