Skip to content

fix: preserve async listeners with ".once()" #75

fix: preserve async listeners with ".once()"

fix: preserve async listeners with ".once()" #75

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:
node-version: 18
always-auth: true
registry-url: https://registry.npmjs.org
- uses: pnpm/action-setup@v2
with:
version: 7.12
- name: Setup Git
run: |
git config --local user.name "Artem Zakharchenko"
git config --local user.email "kettanaito@gmail.com"
- run: pnpm install
- run: pnpm test
- run: pnpm test:ts
- run: pnpm build
- name: Release
if: github.ref == 'refs/heads/main'
run: pnpm release
env:
GITHUB_TOKEN: ${{ secrets.CI_GITHUB_TOKEN }}
NPM_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}