Skip to content

add new social for event (#44) #136

add new social for event (#44)

add new social for event (#44) #136

Workflow file for this run

name: npm_publish
on:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: 12
- name: Cache node modules
uses: actions/cache@v1
with:
path: node_modules
key: dependencies
- run: yarn
# - run: yarn test:smoke
- run: yarn prepare
publish-npm:
needs: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: 12
registry-url: https://registry.npmjs.org/
- name: Cache node modules
uses: actions/cache@v1
with:
path: node_modules
key: dependencies
- run: yarn
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{secrets.npm_token}}