Skip to content

Commit

Permalink
add prisma client install step to pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
Aaron Cohen committed Jan 24, 2024
1 parent fc7df4d commit 528a406
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/upsert-courses.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,10 @@ jobs:
npm-
- name: Install dependencies
run: npm ci --ignore-scripts --no-audit --no-progress
- name: Install ts-node
# TODO: now its complaining about the prisma client, find a way to install all of these machine dependencies better
- name: Install ts-node globally
run: npm install -g ts-node@10.2.1
- name: Install prisma client globally
run: npm install -g @prisma/client@5.4.2
- name: Execute Script
run: ts-node ./scripts/upsert/courses.ts ${{ github.event.inputs.term }} ${{ github.event.inputs.registrationDate }} ${{ github.event.inputs.dropDate }}

0 comments on commit 528a406

Please sign in to comment.