Skip to content

fix the check for HTMLElements #20

fix the check for HTMLElements

fix the check for HTMLElements #20

Workflow file for this run

name: Publish Alpha
on:
push:
branches:
- "alpha/**"
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
ref: ${{ github.ref }}
fetch-depth: 0
- uses: actions/setup-node@v2
with:
node-version: "18.x"
registry-url: "https://registry.npmjs.org"
- run: npm ci
- run: npm publish --tag alpha --yes
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}