DOP-4044: Get repo branches for non-internal doc in docset #1068
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI-persistence | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
# Checks for changes to the modules/persistence directory | |
changes: | |
runs-on: ubuntu-latest | |
outputs: | |
persistence: ${{ steps.filter.outputs.persistence }} | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: dorny/paths-filter@v2 | |
id: filter | |
with: | |
filters: | | |
persistence: | |
- 'modules/persistence/**' | |
test: | |
needs: changes | |
if: ${{ needs.changes.outputs.persistence == 'true' }} | |
defaults: | |
run: | |
working-directory: 'modules/persistence' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v1 | |
with: | |
node-version: '14.x' | |
- name: Install dependencies | |
run: npm install --dev | |
- name: Lint | |
run: npm run lint | |
- name: Test | |
run: npm test |