build(deps-dev): bump @types/node from 22.5.4 to 22.10.1 #92
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: Continuous Integration Build | |
on: | |
pull_request: | |
branches: | |
- "main" | |
- "develop" | |
workflow_dispatch: | |
jobs: | |
build-main: | |
name: Build Dockerfile | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Set up Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: "20.11.1" | |
- name: Enable yarn | |
run: corepack enable | |
- name: Install dependencies | |
run: yarn | |
working-directory: ./frontend | |
- name: Run build | |
run: yarn build | |
working-directory: ./frontend | |
build-spa: | |
name: Build Dockerfile.spa | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Set up Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: "20.11.1" | |
- name: Enable yarn | |
run: corepack enable | |
- name: Install dependencies | |
run: yarn | |
working-directory: ./frontend | |
- name: Run build | |
run: yarn build | |
working-directory: ./frontend |