Skip to content

build(deps-dev): bump tough-cookie from 4.0.0 to 4.1.3 #72

build(deps-dev): bump tough-cookie from 4.0.0 to 4.1.3

build(deps-dev): bump tough-cookie from 4.0.0 to 4.1.3 #72

Workflow file for this run

name: Tests
on:
pull_request:
branches:
- main
paths-ignore:
- '**.md'
jobs:
unit-test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Setup Node.js
uses: actions/[email protected]
with:
node-version: '12.x'
- name: Setup pnpm
uses: pnpm/[email protected]
with:
version: 6.22.1
run_install: false
- name: Setup git
run: |
git config --local user.name "Github Actions"
git config --local user.email "[email protected]"
- name: Determine pnpm cache directory
id: pnpm-cache
run: |
echo "::set-output name=dir::$(pnpm config get cache)"
- name: Restore pnpm cache
uses: actions/cache@v2
with:
path: ${{ steps.pnpm-cache.outputs.dir}}
key: ${{ runner.os }}-node-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-node-
- name: Setup test data
uses: advancedcsg-open/[email protected]
with:
working-directory: 'test/data'
- name: Run unit tests
run: pnpm install && pnpm test
action-test:
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
fail-fast: false
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup git
run: |
git config --local user.name "Github Actions"
git config --local user.email "[email protected]"
- name: Setup Node.js
uses: actions/[email protected]
with:
node-version: '12.x'
- name: Setup pnpm
uses: pnpm/[email protected]
with:
version: 6.22.1
run_install: false
- name: Determine pnpm cache directory
id: pnpm-cache
run: |
echo "::set-output name=dir::$(pnpm config get cache)"
- name: Restore pnpm cache
uses: actions/cache@v2
with:
path: ${{ steps.pnpm-cache.outputs.dir}}
key: ${{ runner.os }}-node-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-node-
- name: Setup rush
uses: advancedcsg-open/[email protected]
with:
working-directory: 'test/data'
- name: Rush build / publish jFrog
uses: ./
with:
version-policy: modules
cmd: pnpm
cmd-args: publish-rt
working-directory: 'test/data'