Skip to content

Bump actions/checkout from 2 to 4 #4

Bump actions/checkout from 2 to 4

Bump actions/checkout from 2 to 4 #4

Workflow file for this run

name: Build Frontend
on:
pull_request:
push:
branches: [main]
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@v2
with:
node-version: '14'
- name: Install Dependencies
run: yarn install
- name: Build
run: yarn build