Skip to content

fix permissions so that package can be added to github release #18

fix permissions so that package can be added to github release

fix permissions so that package can be added to github release #18

Workflow file for this run

name: Test Build
# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events but only for the main branch
push:
branches: [ master ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: setup node
uses: actions/setup-node@v4
with:
node-version: '16'
- name: Build library
run: |
npm install
npm run build