Skip to content

Merge pull request #28 from CSC-510-G55/p2/pytest #33

Merge pull request #28 from CSC-510-G55/p2/pytest

Merge pull request #28 from CSC-510-G55/p2/pytest #33

Workflow file for this run

name: Build
on:
push:
branches: [project2]
pull_request:
branches: [project2]
jobs:
frontend:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v1
- name: Install pnpm
run: npm install -g pnpm
- name: Install dependencies
run: pnpm install --frozen-lockfile
working-directory: frontend/
- name: Build
run: npm run build
working-directory: frontend/