Skip to content

feat: add "ignorecase" enumStyle option (#9) #31

feat: add "ignorecase" enumStyle option (#9)

feat: add "ignorecase" enumStyle option (#9) #31

Workflow file for this run

name: Unit tests
on:
pull_request:
branches:
- main
- '!release/**'
push:
branches:
- main
- '!release/**'
jobs:
test-nx:
name: Any test with nx
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Setup Node.js and cache
uses: ./.github/actions/nodejs
- name: Test all packages
run: npm run ci:all:test
- name: Report to Codacy
uses: codacy/codacy-coverage-reporter-action@v1
with:
project-token: ${{ secrets.CODACY_PROJECT_TOKEN }}
coverage-reports: 'coverage/packages/*/lcov.info'
- name: Report to Code Climate
uses: paambaati/[email protected]
env:
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
with:
coverageLocations: 'coverage/packages/*/lcov.info:lcov'
- name: Report to Codecov
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: 'coverage/packages/*/lcov.info'
concurrency:
group: test-${{ github.head_ref }}
cancel-in-progress: true