feat: Misc Updates #143
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Branches | |
on: | |
pull_request: | |
types: | |
- opened | |
- reopened | |
- edited | |
- synchronize | |
permissions: | |
pull-requests: read | |
jobs: | |
semanticRelease: | |
name: Validate Semantic Title | |
runs-on: ubuntu-latest | |
steps: | |
- name: semantic-pull-request | |
uses: amannn/[email protected] | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
project: | |
name: Validate Builds | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository code | |
uses: actions/checkout@v4 | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: "lts/*" | |
- run: npm ci | |
- name: UI TypeScript Error Free | |
run: | | |
npm run build:spec | |
cd ui | |
npx vue-tsc --noEmit | |
- name: Assessments TypeScript Error Free | |
run: | | |
cd assessments | |
npx vue-tsc --noEmit | |
- name: Resume TypeScript Error Free | |
run: | | |
cd resume | |
npx vue-tsc --noEmit | |
- name: API TypeScript Error Free | |
run: | | |
cd api | |
npx tsc --noEmit |