Skip to content

feat: use ECMAScript modules (ESM) instead of CommonJS #300

feat: use ECMAScript modules (ESM) instead of CommonJS

feat: use ECMAScript modules (ESM) instead of CommonJS #300

Workflow file for this run

name: Code Coverage
# Controls when the action will run. Triggers the workflow on push or pull request
# events but only for the master branch
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
build:
runs-on: [ubuntu-latest]
timeout-minutes: 5
steps:
- uses: actions/checkout@master
- run: yarn
- run: yarn boot
- run: yarn build
- run: yarn test --coverage
- uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
name: v-validation # optional
fail_ci_if_error: true # optional (default = false)