Skip to content

build(deps): bump tough-cookie, jest and ts-jest #75

build(deps): bump tough-cookie, jest and ts-jest

build(deps): bump tough-cookie, jest and ts-jest #75

Workflow file for this run

on: push
name: Build
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x]
steps:
- uses: actions/checkout@v1
- name: Cache node modules
uses: actions/cache@v1
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Node ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install
run: npm ci
- name: Lint
run: npm run lint
- name: Build
run: npm run build
- name: Deploy
if: ${{ github.ref == 'refs/heads/master' }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
run: npm run semantic-release
- uses: actions/upload-artifact@master
with:
name: build-artifact
path: lib
publish:
runs-on: ubuntu-latest
needs: build
steps:
- uses: actions/checkout@master
- uses: actions/download-artifact@master
with:
name: build-artifact
path: lib
- uses: bvkimball/[email protected]
- env:
API_TOKEN_GITHUB: ${{ secrets.API_TOKEN_GITHUB }}
run: sh snapshot-publish