Skip to content

Remove "src" for npm package dist (#20) #88

Remove "src" for npm package dist (#20)

Remove "src" for npm package dist (#20) #88

Workflow file for this run

name: CI
on:
push:
branches: [main]
tags: ["v*"]
pull_request:
branches: ["*"]
jobs:
push:
name: push
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 16.x
registry-url: https://registry.npmjs.org
- run: yarn install --frozen-lockfile
- run: yarn run test
- run: yarn run build
# install dependencies for examples (including reference back to main package)
- name: yarn install examples
run: yarn install --frozen-lockfile
working-directory: ./examples
# make sure the examples build
- name: build examples
run: yarn tsc -b
working-directory: ./examples
# lint needs to run after examples yarn install since it also lints the examples
- run: yarn run lint:ci
- name: Publish to NPM
if: ${{ startsWith(github.ref, 'refs/tags/v') }}
run: yarn publish --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_PUBLISH_TOKEN }}