Simply retry strategy for minor errors #8337
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: Squiggle packages checks | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
env: | |
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }} | |
TURBO_TEAM: quantified-uncertainty | |
# used by turbo cache hashes, see turbo.json | |
PLATFORM: github | |
jobs: | |
build-test-lint: | |
name: Build, test, lint | |
runs-on: ubuntu-latest | |
concurrency: | |
group: ci-build-test-lint-${{ github.ref }} | |
cancel-in-progress: true | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: pnpm/action-setup@v4 | |
- name: Setup Node.js environment | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
cache: pnpm | |
- name: Install dependencies | |
run: pnpm install | |
- name: Turbo run | |
run: npx turbo run build test lint |