Skip to content

chore(deps): update semantic-release dependencies #107

chore(deps): update semantic-release dependencies

chore(deps): update semantic-release dependencies #107

Workflow file for this run

name: Build
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
repository: ngageoint/opensphere-yarn-workspace
path: opensphere-yarn-workspace
persist-credentials: false
- uses: actions/checkout@v2
with:
repository: ngageoint/opensphere
path: opensphere-yarn-workspace/workspace/opensphere
persist-credentials: false
- uses: actions/checkout@v2
with:
fetch-depth: 0
path: opensphere-yarn-workspace/workspace/${{ github.event.repository.name }}
persist-credentials: false
- name: Install Node.js
uses: actions/setup-node@v2
with:
node-version: 16.x
- name: Get Yarn Cache Directory
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn cache dir)"
- name: Cache Yarn Cache Directory
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 --prefer-offline
working-directory: opensphere-yarn-workspace/workspace
- name: Lint Source
run: yarn lint
working-directory: opensphere-yarn-workspace/workspace/${{ github.event.repository.name }}
- name: Unit Tests
run: yarn test
working-directory: opensphere-yarn-workspace/workspace/${{ github.event.repository.name }}
- name: Release
if: github.ref == 'refs/heads/master'
env:
GH_TOKEN: ${{ secrets.GH_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
run: yarn semantic-release
working-directory: opensphere-yarn-workspace/workspace/${{ github.event.repository.name }}