Skip to content

chore(deps): bump braces from 3.0.2 to 3.0.3 #11

chore(deps): bump braces from 3.0.2 to 3.0.3

chore(deps): bump braces from 3.0.2 to 3.0.3 #11

Workflow file for this run

name: Release
on:
push:
branches:
- master
paths-ignore:
- '**/README.md'
- 'README.md'
pull_request:
types: [opened, reopened, synchronize]
paths-ignore:
- '**/README.md'
- 'README.md'
jobs:
release:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x]
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2-beta
with:
node-version: ${{ matrix.node-version }}
- name: Set up Yarn
id: yarn-cache-dir-path
run: |
npm i -g yarn
yarn set version latest
yarn config set enableTelemetry 0
echo "::add-path::$(yarn global bin)"
echo "::set-output name=dir::$(yarn cache dir)"
env:
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Cache Yarn
uses: actions/cache@v2
with:
path: |
${{ steps.yarn-cache-dir-path.outputs.dir }}
**/node_modules
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- name: Install Dependencies
run: yarn --frozen-lockfile
env:
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Semantic Release
run: yarn semantic-release
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}