Skip to content

Merge pull request #3 from Kernel360/develop #1

Merge pull request #3 from Kernel360/develop

Merge pull request #3 from Kernel360/develop #1

Workflow file for this run

name: Frontend CI
on:
push:
pull_request:
branches: [ "develop" ]
defaults:
run:
working-directory: ./frontend
jobs:
test:
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- uses: actions/checkout@v4
with:
sparse-checkout:
frontend
- uses: actions/setup-node@v4
with:
node-version: 20
cache: 'npm'
cache-dependency-path: '**/package-lock.json'
- run: npm ci
- name: Run test
run: npm run test