Skip to content

chore: add build files #3

chore: add build files

chore: add build files #3

Workflow file for this run

name: 'action'
on:
push:
branches:
- '**'
pull_request:
branches:
- '**'
jobs:
test-action:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
- name: Run Test Reports Action Locally
id: test-action
uses: ./
with:
report-path: './ctrf-reports/ctrf-report.json'
summary-report: true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Upload Test Results
uses: actions/upload-artifact@v4
with:
name: ctrf-report
path: ctrf-reports/ctrf-report.json
if: always()