Skip to content

feat: support esm

feat: support esm #56

Workflow file for this run

name: ci
on:
push:
branches:
- main
pull_request:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
token: ${{ secrets.CI_GITHUB_TOKEN }}
- uses: actions/setup-node@v3
with:
always-auth: true
registry-url: https://registry.npmjs.org
- name: Setup Git
run: |
git config --local user.name "GitHub Actions"
git config --local user.email "actions@github.com"
- run: npm ci
- name: Tests (Unit)
run: npm test
- name: Tests (Compliance)
run: npm run test:compliance
- name: Build
run: npm run build
- name: Release
if: github.ref == 'refs/heads/main'
run: npm run release
env:
GITHUB_TOKEN: ${{ secrets.CI_GITHUB_TOKEN }}
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}