diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index ecac340..1b0fb0f 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -9,6 +9,26 @@ on: - main jobs: + setup: + runs-on: ubuntu-latest + steps: + - name: Checkout repo + uses: actions/checkout@v3 + + - name: Setup node + uses: actions/setup-node@v3 + with: + node-version: 20 + + - name: Install dependencies + run: npm install + + - name: Lint code + run: npm run lint + + - name: Typecheck code + run: npm run typecheck + deploy: runs-on: ubuntu-latest steps: