Skip to content

Introduce CI/CD for testing #1

Introduce CI/CD for testing

Introduce CI/CD for testing #1

Workflow file for this run

name: Verify
on: [push, pull_request]
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@v3
- name: Install dependencies
uses: ./.github/actions/setup
- name: Lint code
run: pnpm lint
build:
name: Build
needs: lint
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@v3
- name: Install dependencies
uses: ./.github/actions/setup
- name: Build
run: pnpm build
test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install dependencies
uses: ./.github/actions/setup
- name: Run tests
uses: nick-fields/retry@v2
with:
timeout_minutes: 20
max_attempts: 3
command: pnpm test