diff --git a/.github/workflows/checks.yml b/.github/workflows/checks.yml new file mode 100644 index 0000000000..d619159e43 --- /dev/null +++ b/.github/workflows/checks.yml @@ -0,0 +1,19 @@ +name: checks +on: [pull_request] +jobs: + checks: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v4 + + - name: Setup Node.js + uses: actions/setup-node@v4 + with: + node-version-file: .nvmrc + + - run: nvm use + - run: yarn build + - run: yarn lint + - run: yarn typecheck + - run: yarn test