Skip to content

Merge pull request #229 from remarkablemark/dependabot/npm_and_yarn/w… #70

Merge pull request #229 from remarkablemark/dependabot/npm_and_yarn/w…

Merge pull request #229 from remarkablemark/dependabot/npm_and_yarn/w… #70

Workflow file for this run

name: publish
on:
push:
branches:
- master
workflow_dispatch:
inputs:
dry-run:
description: 'Dry run? (y/N)'
required: true
default: 'N'
jobs:
publish:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Use Node.js
uses: actions/setup-node@v2
with:
registry-url: 'https://registry.npmjs.org'
- name: Configure Git user
run: |
git config --global user.name 'github-actions[bot]'
git config --global user.email 'github-actions[bot]@users.noreply.github.com'
- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn cache dir)"
- name: Cache dependencies
uses: actions/cache@v2
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- name: Install dependencies
run: yarn --frozen-lockfile --prefer-offline
- name: Lint commit message
run: yarn commitlint --from=HEAD~1
- name: Lint packages
run: yarn lint
- name: Test packages
run: yarn test
- name: Publish (dry run)
if: |
github.ref == 'refs/heads/master'
&& contains(github.event.inputs.dry-run, 'y')
run: yarn lerna version --no-git-tag-version --no-push --yes --loglevel=verbose
- name: Publish
if: |
github.ref == 'refs/heads/master'
&& contains(github.event.inputs.dry-run, 'y') == false
run: yarn lerna publish --no-verify-access
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}