Skip to content

Commit

Permalink
Merge pull request #4 from caido-community/Corb3nik/add-validate-work…
Browse files Browse the repository at this point in the history
…flow

Add a validate workflow for each template
  • Loading branch information
Corb3nik authored Oct 26, 2024
2 parents 07eaa9b + 33ec768 commit 4c3d630
Showing 1 changed file with 49 additions and 0 deletions.
49 changes: 49 additions & 0 deletions .github/workflows/validate.yml
Original file line number Diff line number Diff line change
@@ -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 }}

0 comments on commit 4c3d630

Please sign in to comment.