description |
---|
Running Node.js Tests on GitHub Actions |
{% hint style="info" %} TL;DR Check out the example repository:
https://github.com/currents-dev/currents-nodejs-github-actions-example {% endhint %}
Here's an example workflow configuration file:
{% code title=".github/workflows /node.yml" overflow="wrap" %}
name: Run Node.JS
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
shard: [1, 2]
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: "20"
- name: Install dependencies
run: npm install
- name: install currents
run: npm install @currents/node-test-reporter @currents/cmd
- name: Run tests in shard ${{ matrix.shard }}
run: node --test --test-shard=${{ matrix.shard }}/2 --test-reporter @currents/node-test-reporter --test-reporter-destination=./report.xml tests/**.test.mjs || true && echo '✅ Script executed successfully'
- name: Convert test results to Currents format
run: npx currents convert --input-format=junit --input-file=./report.xml --framework=node
- name: Upload test results to Currents.dev
# CURRENTS_RECORD_KEY is a secret stored in the repository settings
env:
CURRENTS_RECORD_KEY: ${{ secrets.CURRENTS_RECORD_KEY }}
run: |
npx currents upload --project-id JOw2i3 --ci-build-id ${{ github.repository }}-${{ github.run_id }}-${{ github.run_attempt }}
{% endcode %}
- Get your Record Key and set GH secret variable
CURRENTS_RECORD_KEY
. - Set the Project ID
- Option 1: Update
npx currents upload
--project-id
argument to your project's id. - Option 2: Set it up in the reporter config instead.
- Option 1: Update
@currents/node-test-reporter | currents-jest.md | ||
CI Build ID | ci-build-id.md | ||
@currents/cmd |