Skip to content

fix(config): support autoformat option flag #17

fix(config): support autoformat option flag

fix(config): support autoformat option flag #17

Workflow file for this run

name: unittest
on: [pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/[email protected]
- name: Setup Node environment
uses: actions/[email protected]
with:
node-version: 20
- name: Cache Modules
uses: actions/cache@v4
with:
path: "**/node_modules"
key: ${{ runner.os }}-modules-${{ hashFiles('**/package-lock.json') }}
- name: Install dependencies
run: npm install
- name: Build library
run: npm run release
- name: Run unit tests
run: npm run test
# - name: Run e2e tests
# run: npm run test:e2e
# - name: Submit to Codecov
# run: npm run codecov