Skip to content

feat: use a library to convert tap to xml format, and use junit #19

feat: use a library to convert tap to xml format, and use junit

feat: use a library to convert tap to xml format, and use junit #19

# 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 --reporter=lcov --reporter=text ava
- name: Upload test artifact
id: upload-test-artifact
uses: actions/upload-artifact@v4
with:
name: my-artifact
path: coverage/lcov-report
retention-days: 14