Skip to content

update tes interest math #170

update tes interest math

update tes interest math #170

Workflow file for this run

name: Quality gate
on:
push:
permissions:
contents: read
packages: read
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: ./.github/actions/setup
- run: npm run lint
- run: npm run typecheck
test:
needs: lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: ./.github/actions/setup
- run: npm run test
# e2e:
# needs: lint
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v6
# - uses: ./.github/actions/setup
# - run: npm run test.e2e
build:
needs:
- test
# - e2e
- lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- run: docker compose build