Skip to content

Remove unnecessary import and console.log in HTML files #13

Remove unnecessary import and console.log in HTML files

Remove unnecessary import and console.log in HTML files #13

Workflow file for this run

on:
push:
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: "20"
- run: npm ci
- run: npm test
- uses: JS-DevTools/npm-publish@v3
if:
github.ref == 'refs/heads/main'
with:
token: ${{ secrets.GITHUB_TOKEN }}
registry: "https://npm.pkg.github.com"