Bump the all-dependencies group across 1 directory with 9 updates #349
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: 'build-test' | |
on: # rebuild any PRs and main branch changes | |
pull_request: | |
push: | |
branches: | |
- main | |
- 'releases/*' | |
jobs: | |
build: # make sure build/ci work properly | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up Java 17 | |
run: | | |
echo "$JAVA_HOME_17_X64/bin" >> $GITHUB_PATH | |
echo "org.gradle.java.home=${JAVA_HOME_17_X64//\\/\/}" >> gradle.properties | |
echo "JAVA_HOME=$JAVA_HOME_17_X64" >> $GITHUB_ENV | |
shell: bash | |
- uses: actions/checkout@v4 | |
- run: | | |
yarn install | |
- run: | | |
yarn run all | |
test: # make sure the action works on a clean machine without building | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up Java 17 | |
run: | | |
echo "$JAVA_HOME_17_X64/bin" >> $GITHUB_PATH | |
echo "org.gradle.java.home=${JAVA_HOME_17_X64//\\/\/}" >> gradle.properties | |
echo "JAVA_HOME=$JAVA_HOME_17_X64" >> $GITHUB_ENV | |
shell: bash | |
- uses: actions/checkout@v4 | |
- uses: ./ |