1572 bewiki create huggingface repository apiv1resourcesgenerate description endpoint and testing #105
Workflow file for this run
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: pr_check_service_wiki | |
on: | |
pull_request: | |
branches: | |
- main | |
paths: | |
- "services/wiki/**" | |
jobs: | |
pr_check_service_wiki: | |
runs-on: ubuntu-latest | |
services: | |
postgres: | |
image: postgres:14.1 | |
env: | |
POSTGRES_USER: ${{ secrets.POSTGRES_USER }} | |
POSTGRES_PASSWORD: ${{ secrets.POSTGRES_PASSWORD }} | |
POSTGRES_DB: ${{ secrets.POSTGRES_DB }} | |
ports: | |
- 10911:5432 | |
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5 | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Use Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: "18" | |
cache: "npm" | |
cache-dependency-path: services/wiki/package-lock.json | |
- name: Cache Node.js modules | |
uses: actions/cache@v3 | |
with: | |
path: ${{ github.workspace }}/services/wiki/node_modules | |
key: ${{ runner.OS }}-node-${{ hashFiles('**/package-lock.json') }} | |
restore-keys: | | |
${{ runner.OS }}-node- | |
- name: install dependencies | |
run: | | |
cd ${{ github.workspace }}/services/wiki | |
npm ci --legacy-peer-deps | |
- name: lint | |
run: | | |
cd ${{ github.workspace }}/services/wiki | |
npx eslint src --max-warnings 0 | |
- name: Set up Prisma | |
run: | | |
cd ${{ github.workspace }}/services/wiki | |
npx prisma generate | |
- name: Run migrations | |
run: | | |
cd ${{ github.workspace }}/services/wiki | |
npx prisma migrate deploy | |
- name: Seed the database | |
run: | | |
cd ${{ github.workspace }}/services/wiki | |
npx prisma db seed | |
- name: test | |
run: | | |
cd ${{ github.workspace }}/services/wiki | |
npm run test -- --coverage | |
- name: build | |
run: | | |
cd ${{ github.workspace }}/services/wiki | |
npm run build | |
- name: SonarCloud Scan | |
uses: SonarSource/sonarcloud-github-action@master | |
with: | |
projectBaseDir: services/wiki | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} |