Skip to content

refactor: Update vacation retrieval and validation #624

refactor: Update vacation retrieval and validation

refactor: Update vacation retrieval and validation #624

Workflow file for this run

name: Build
on:
push:
branches:
'*'
jobs:
run-linters:
name: Run linters
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
steps:
- name: Checkout Repository
uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install Dependencies
run: |
cd client
npm install -g pnpm
pnpm install
- name: Build
run: |
cd client
pnpm build