Application Build Test #67
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: Application Build Test | |
on: | |
pull_request: | |
branches: | |
- main | |
- development | |
paths: | |
- 'src/**' | |
- '.github/workflows/**' | |
run-name: Application Build Test | |
jobs: | |
build: | |
name: Build Test | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Repository Checkout | |
uses: actions/checkout@v4 | |
- name: Node.js runtime setting | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- name: pnpm settings | |
uses: pnpm/action-setup@v4 | |
with: | |
run_install: false | |
- name: Install dependencies | |
run: pnpm install | |
- name: Check Application Build | |
run: pnpm build |