Skip to content

chore: update package.json publish files #13

chore: update package.json publish files

chore: update package.json publish files #13

Workflow file for this run

---
name: Check build
on:
pull_request:
branches:
- main
jobs:
install-build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [ 16.x ]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
registry-url: "https://registry.npmjs.org"
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build
- name: Prepare
run: npm run prepare-publishing