chore: adds more build checks #1
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: Check Fullstack Demo TS Pull Request | |
on: | |
pull_request: | |
branches: [ "main" ] | |
paths: | |
- ".github/workflows/check_fullstack_demo_ts_pr.yaml" | |
- "lib/typescript/fullstack_demo/**" | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '20.x' | |
- name: Build Fullstack Demo with Node.js | |
working-directory: ./lib/typescript/fullstack_demo | |
run: npm ci |