mirror of
https://github.com/Infisical/infisical.git
synced 2025-03-25 14:05:03 +00:00
Correct workflow test
This commit is contained in:
18
.github/workflows/be-test-report.yml
vendored
18
.github/workflows/be-test-report.yml
vendored
@ -1,8 +1,8 @@
|
||||
name: 'Backend Test Report'
|
||||
name: "Backend Test Report"
|
||||
|
||||
on:
|
||||
workflow_run:
|
||||
workflows: ['Check Backend Pull Request']
|
||||
workflows: ["Check Backend Pull Request"]
|
||||
types:
|
||||
- completed
|
||||
|
||||
@ -12,19 +12,19 @@ jobs:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- uses: dorny/test-reporter@v1
|
||||
- name: 📁 Download test results
|
||||
uses: actions/download-artifact@v3
|
||||
with:
|
||||
path: '*.xml' # Path to test results (inside artifact .zip)
|
||||
reporter: jest-junit # Format of test results
|
||||
- name: 📄 Publish test results
|
||||
name: be-test-results
|
||||
- name: 📋 Publish test results
|
||||
uses: dorny/test-reporter@v1
|
||||
with:
|
||||
name: Test Results
|
||||
artifact: be-test-results
|
||||
path: reports/jest-*.xml
|
||||
reporter: jest-junit
|
||||
- uses: ArtiomTr/jest-coverage-report-action@v2
|
||||
- name: 📋 Publish coverage
|
||||
uses: ArtiomTr/jest-coverage-report-action@v2
|
||||
id: coverage
|
||||
with:
|
||||
output: report-markdown
|
||||
coverage-file: backend/coverage/report.json
|
||||
coverage-file: coverage/report.json
|
||||
|
19
.github/workflows/check-be-pull-request.yml
vendored
19
.github/workflows/check-be-pull-request.yml
vendored
@ -1,13 +1,14 @@
|
||||
name: 'Check Backend Pull Request'
|
||||
name: "Check Backend Pull Request"
|
||||
|
||||
on:
|
||||
workflow_dispatch: # remove me
|
||||
pull_request:
|
||||
types: [opened, synchronize]
|
||||
paths:
|
||||
- 'backend/**'
|
||||
- '!backend/README.md'
|
||||
- '!backend/.*'
|
||||
- 'backend/.eslintrc.js'
|
||||
- "backend/**"
|
||||
- "!backend/README.md"
|
||||
- "!backend/.*"
|
||||
- "backend/.eslintrc.js"
|
||||
|
||||
jobs:
|
||||
check-be-pr:
|
||||
@ -20,8 +21,8 @@ jobs:
|
||||
- name: 🔧 Setup Node 16
|
||||
uses: actions/setup-node@v3
|
||||
with:
|
||||
node-version: '16'
|
||||
cache: 'npm'
|
||||
node-version: "16"
|
||||
cache: "npm"
|
||||
cache-dependency-path: backend/package-lock.json
|
||||
- name: 📦 Install dependencies
|
||||
run: npm ci --only-production --ignore-scripts
|
||||
@ -35,8 +36,8 @@ jobs:
|
||||
with:
|
||||
name: be-test-results
|
||||
path: |
|
||||
backend/reports
|
||||
backend/coverage
|
||||
./backend/reports
|
||||
./backend/coverage
|
||||
- name: 🏗️ Run build
|
||||
run: npm run build
|
||||
working-directory: backend
|
||||
|
Reference in New Issue
Block a user