diff --git a/.github/workflows/validate.yml b/.github/workflows/validate.yml new file mode 100644 index 0000000..a768e58 --- /dev/null +++ b/.github/workflows/validate.yml @@ -0,0 +1,49 @@ +name: Validate + +on: + push: + branches: + - 'main' + pull_request: + +env: + NODE_VERSION: 20 + PNPM_VERSION: 9 + +jobs: + validate: + runs-on: ubuntu-latest + timeout-minutes: 10 + strategy: + matrix: + template: + - frontend-vanilla + - frontend-vue + - no-frontend + + steps: + - name: Checkout project + uses: actions/checkout@v4 + + - name: Setup Node.js + uses: actions/setup-node@v4 + with: + node-version: ${{ env.NODE_VERSION }} + + - name: Setup pnpm + uses: pnpm/action-setup@v4 + with: + version: ${{ env.PNPM_VERSION }} + run_install: false + + - name: Install dependencies + run: pnpm install + working-directory: templates/${{ matrix.template }} + + - name: Build + run: pnpm build + working-directory: templates/${{ matrix.template }} + + - name: Typecheck + run: pnpm typecheck + working-directory: templates/${{ matrix.template }}