diff --git a/.github/workflows/checks.yml b/.github/workflows/checks.yml new file mode 100644 index 0000000000..14f1a6819d --- /dev/null +++ b/.github/workflows/checks.yml @@ -0,0 +1,11 @@ +name: checks +on: [pull_request] +jobs: + checks: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - run: yarn build + - run: yarn lint + - run: yarn typecheck + - run: yarn test