Skip to content

Use GitHub for npm registry #1

Use GitHub for npm registry

Use GitHub for npm registry #1

Workflow file for this run

#
# This CI triggered on PRs.
#
# Verify if `npm run build:dist` pass
#
on:
- pull_request
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
registry-url: "https://npm.pkg.github.com"
- run: npm install
- run: npm run prepublish