finally happy with GraphQL I think #479
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: 'Lint and Test' | |
on: push | |
jobs: | |
eslint: | |
name: "ESLint" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: ./.github/actions/yarn-action | |
name: "Install and lint" | |
with: | |
command: eslint:check | |
prettier: | |
name: "Prettier" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: ./.github/actions/yarn-action | |
name: "Install and check formatting" | |
with: | |
command: format:check | |
test: | |
name: "Test" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: ./.github/actions/yarn-action | |
name: "Install and test" | |
with: | |
command: test | |
tsc-web: | |
name: "TSC Web" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: ./.github/actions/yarn-action | |
name: "Install and tsc web" | |
with: | |
command: workspace @yestheory.family/web tsc --noEmit | |
tsc-server: | |
name: "TSC Server" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: ./.github/actions/yarn-action | |
name: "Install and tsc server" | |
with: | |
command: workspace @yestheory.family/server tsc --noEmit |