Skip to content
This repository was archived by the owner on Apr 24, 2025. It is now read-only.

fix all

fix all #95

Workflow file for this run

name: Test
on:
push:
branches:
- master
- releases/*
pull_request:
env:
NX_BRANCH: ${{ github.event.number }}
NX_RUN_GROUP: ${{ github.run_id }}
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Cache node modules
id: cache
uses: actions/cache@v2
with:
path: |
**/node_modules
key: ${{ env.DEPENDENCIES_CACHE }}-${{ hashFiles('package-lock.json') }}
- name: Install dependencies
if: steps.cache.outputs.cache-hit != 'true'
run: npm i
- uses: nrwl/nx-set-shas@v4
- name: nx affected:test
run: |
npx nx affected -t test --base origin/master