Skip to content

feat: Export class classification object with class suffixes #2

feat: Export class classification object with class suffixes

feat: Export class classification object with class suffixes #2

Workflow file for this run

name: Test and Release
on:
push:
branches:
- master
tags-ignore:
- '**'
paths-ignore:
- '**/*.md'
- LICENSE
pull_request:
permissions:
id-token: write
contents: write
jobs:
test-and-release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: pnpm/action-setup@v4
with:
version: latest
- uses: actions/setup-node@v5
with:
node-version: 'lts/*'
registry-url: 'https://registry.npmjs.org'
cache: 'pnpm'
- run: pnpm i --frozen-lockfile --no-verify-store-integrity
- run: npm run build
- run: npm run cover
- uses: codecov/codecov-action@v4
if: ${{ github.ref_name == 'master' }}
with:
token: ${{ secrets.CODECOV_TOKEN }}
- uses: prantlf/publish-release-action@v1
with:
no-npm-auth: true
no-archives: true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}