[#160] Add back missing volume mappings #9
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: CI | |
on: | |
push: | |
branches: | |
- "dev" | |
- "main" | |
pull_request: | |
types: [opened, reopened, synchronize] | |
jobs: | |
ci: | |
name: CI | |
runs-on: ubuntu-latest | |
container: node:22.12.0-bookworm | |
steps: | |
- name: Check out repository code | |
uses: actions/checkout@v4 | |
with: | |
ref: ${{ github.head_ref }} | |
- name: Set up npm cache | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 22 | |
cache: 'npm' | |
- name: Install Dependencies | |
run: npm ci | |
- name: Generate Prisma client | |
run: cd server && npx prisma generate | |
- name: Run ESLint | |
run: npm run lint | |
- name: Run Tests | |
run: cp server/example.env server/.env && npm test |