Skip to content

feat(frontend): add link to sample file #11

feat(frontend): add link to sample file

feat(frontend): add link to sample file #11

Workflow file for this run

name: Frontend CI
on:
push:
branches: [ "main" ]
paths:
- frontend/**
pull_request:
branches: [ "main" ]
paths:
- frontend/**
jobs:
build:
runs-on: ubuntu-latest
defaults:
run:
working-directory: './frontend' # where package-lock.json is
strategy:
matrix:
node-version: [18.x] # Just targetting this version for now
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
cache-dependency-path: '**/package-lock.json'
- run: npm ci
- run: npm run build