Skip to content

MIG-207: adding test to cover export for i18n #32

MIG-207: adding test to cover export for i18n

MIG-207: adding test to cover export for i18n #32

# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs
name: Mdctl core Tests
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x, 18.x, 20.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: Set ENV variables
id: vars
run: |
echo "CI_COMMIT_SHORT_SHA=$(git rev-parse --short ${{ github.sha }})" >> "$GITHUB_ENV"
echo "MOCHAWESOME_REPORTFILENAME: "mdctl-core test report. Commit: #$CI_COMMIT_SHORT_SHA" >> "$GITHUB_ENV"
- run: npm ci
- run: npm run test --workspace=@medable/mdctl-core
- uses: actions/upload-artifact@v4
with:
name: mdctl-core-report-${{ matrix.node-version }}
path: ./packages/mdctl-core/mochawesome-report