This repository has been archived by the owner on Apr 12, 2024. It is now read-only.
Bump @elysiajs/jwt from 0.7.1 to 1.0.2 #114
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build API | |
on: | |
push: | |
branches: [ "master" ] | |
pull_request: | |
branches: [ "master" ] | |
jobs: | |
build-api: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Setup Bun | |
uses: oven-sh/setup-bun@v1 | |
with: | |
bun-version: 1.0.11 # or "latest", "canary", <sha> | |
- name: Install dependencies | |
run: bun i | |
- name: Install dependencies in API | |
run: | | |
cd apps/api | |
bun i | |
npx prisma generate | |
- name: API build | |
run: bun run build:api | |
- name: API build types | |
run: bun run build:api:types |