add linter and fix types for submission field

This commit is contained in:
Michael Schramm 2022-01-03 10:13:18 +01:00
parent 0c1fa45288
commit 107b2da182
2 changed files with 34 additions and 0 deletions

33
.github/workflows/test.yml vendored Normal file
View File

@ -0,0 +1,33 @@
name: Lint
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
run-linters:
name: Run linters
runs-on: ubuntu-latest
steps:
- name: Check out Git repository
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v1
with:
node-version: 16
# ESLint and Prettier must be in `package.json`
- name: Install Node.js dependencies
run: yarn install --frozen-lockfile --silent
- name: Lint
run: yarn lint
- name: Lint
run: yarn type-check

View File

@ -12,6 +12,7 @@ export interface SubmissionSetFieldMutationVariables {
field: {
token: string
field: string
data: string
}
}