Skip to content

refactor: github actions #26

refactor: github actions

refactor: github actions #26

Workflow file for this run

name: Build
on:
push:
branches:
- main
- develop
pull_request:
branches:
- '**'
jobs:
build-processor:
runs-on: ubuntu-latest
defaults:
run:
working-directory: processor
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '20.9.0'
- name: Install dependencies
run: npm ci
- name: Run ESLint check
run: npm run lint
- name: Run Prettier check
run: npm run prettier:check
- name: Build project
run: npm run build
- name: Run tests
run: npm run test
- name: Archive code coverage results
uses: actions/upload-artifact@v4
with:
name: code-coverage-report
path: processor/junit-report.xml
- name: Confirm Artifact Upload
run: |
echo "Checking for uploaded artifacts..."
if [ ! "$(curl -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" -s https://api.github.com/repos/${{ github.repository }}/actions/artifacts | jq '.artifacts[] | select(.name=="code-coverage-report") | .name')" ]; then
echo "Artifact 'code-coverage-report' not found!"
exit 1
else
echo "Artifact 'code-coverage-report' found successfully."
fi