Skip to content

If we find ourselves on the payment screen without a payment intent, … #159

If we find ourselves on the payment screen without a payment intent, …

If we find ourselves on the payment screen without a payment intent, … #159

Workflow file for this run

name: Typecheck, lint, and build front-end
on: [push]
jobs:
front-end-lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: npm install
working-directory: front-end
run: npm install
- name: Lint
working-directory: front-end
run: npx eslint .
front-end-typecheck:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: npm install
working-directory: front-end
run: npm install
- name: Typecheck
working-directory: front-end
run: npx tsc --noEmit
back-end-check:

Check failure on line 24 in .github/workflows/main.yml

View workflow run for this annotation

GitHub Actions / Typecheck, lint, and build front-end

Invalid workflow file

The workflow is not valid. .github/workflows/main.yml (Line: 24, Col: 5): Unexpected value 'back-end-check'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Typecheck
working-directory: back-end
run: deno task check