fix: update report path #23
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
# This workflow will build and test a Node.js project | |
name: Deploy to Firebase Functions via github action | |
on: | |
push: | |
branches: ["feature/*"] | |
workflow_call: | |
jobs: | |
build: | |
runs-on: ubuntu-22.04 | |
timeout-minutes: 5 | |
permissions: | |
checks: write | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Node v18 | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '18' | |
- name: Install dependencies | |
working-directory: . | |
run: find ./* -maxdepth 2 -name package.json -execdir npm ci \; | |
- name: Lint with ESLint | |
run: DEBUG=eslint:cli-engine npx eslint . | |
- name: Test with ava | |
id: unit-tests-step | |
run: find ./* -maxdepth 2 -name ava.config.js -print0 | xargs --null -I {} npx nyc ava | npx tap-junit > test.xml | |
- name: Upload test artifact | |
id: upload-test-artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: my-artifact | |
path: coverage/lcov-report | |
retention-days: 14 | |
- name: Publish test report | |
uses: mikepenz/action-junit-report@v4 | |
if: success() || failure() | |
with: | |
report_paths: 'test.xml' | |
detailed_summary: true | |
include_passed: true |