Skip to content

Bump @types/node from 22.4.1 to 22.4.2 in /frontend/aashub #57

Bump @types/node from 22.4.1 to 22.4.2 in /frontend/aashub

Bump @types/node from 22.4.1 to 22.4.2 in /frontend/aashub #57

Workflow file for this run

name: Build Frontend
on:
pull_request:
paths:
- 'frontend/aashub/**'
push:
branches: [main]
paths:
- 'frontend/aashub/**'
jobs:
build:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./frontend/aashub
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '22'
- name: Install Dependencies
run: yarn install
- name: Build
run: yarn build