Merge branch 'master' into dependabot/npm_and_yarn/image-train-filter… #3049
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: PR image-train-filters-web | |
on: | |
create: | |
branches: | |
- '**' | |
pull_request: | |
branches: | |
- '**' | |
paths-ignore: | |
- 'README.md' | |
- 'Readme.md' | |
push: | |
branches: | |
- '**' | |
- '!master' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up JDK 21 | |
uses: actions/setup-java@v4 | |
with: | |
java-version: '21' | |
distribution: 'adopt' | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- name: Install Jest Image Train Filters Web | |
run: cd image-train-filters-fe && yarn && yarn add jest --dev | |
- name: Run Tests and Build | |
run: make build |