Scope pull request workflows to paths #3
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: Pull request | |
on: pull_request | |
jobs: | |
tests: | |
name: Javascript unit tests | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
cache: 'npm' | |
- name: Get changed files | |
id: changed-tests | |
uses: tj-actions/changed-files@v45 | |
with: | |
files: | | |
packages/**/*.js | |
packages/**/*.scss | |
dist/app/components/**/*.html | |
- name: Install dependencies | |
if: steps.changed-tests.outputs.any_changed == 'true' | |
run: npm ci | |
- name: Run tests | |
if: steps.changed-tests.outputs.any_changed == 'true' | |
run: npm test | |
ui_tests: | |
name: Visual regression tests2 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
cache: 'npm' | |
- name: Get changed files | |
id: changed-ui_tests | |
uses: tj-actions/changed-files@v45 | |
with: | |
files: | | |
packages/** | |
tests/** | |
app/** | |
- name: Install dependencies | |
if: steps.changed-ui_tests.outputs.any_changed == 'true' | |
run: npm ci | |
- name: Run backstop | |
if: steps.changed-ui_tests.outputs.any_changed == 'true' | |
run: npm run backstop:ci |