Skip to content

Merge pull request #74 from apptreesoftware/eyu_0918 #80

Merge pull request #74 from apptreesoftware/eyu_0918

Merge pull request #74 from apptreesoftware/eyu_0918 #80

Workflow file for this run

name: CI
on:
push:
branches: master
jobs:
publish-npm:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: 8
registry-url: https://registry.npmjs.org/
- run: yarn
- run: npm run-script build
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{secrets.npm_token}}