Skip to content

updated to [email protected]

updated to [email protected] #54

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [22.x]
steps:
- run: corepack enable
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'yarn'
- run: yarn install
- name: yarn run cleantest
run: yarn run cleantest
- name: yarn run cleancoverage
run: yarn run cleancoverage
# - name: Coveralls
# uses: coverallsapp/github-action@master
# with:
# path-to-lcov: ./docs/coverage/lcov.info
# github-token: ${{ secrets.GITHUB_TOKEN }}