remove root password changes for now #46
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: "Test the build-refs js action" | |
on: | |
push: | |
branches: | |
- '*' | |
paths: | |
- ".github/workflows/test-build-refs.yml" | |
- ".github/actions/build-refs/**/*" | |
jobs: | |
check-action: | |
name: "check build refs action" | |
runs-on: 'ubuntu-latest' | |
steps: | |
- name: Fetch sources | |
uses: 'actions/checkout@v3' | |
with: | |
submodules: false | |
- name: Set up js | |
run: | | |
cd .github/actions/build-refs | |
npm install | |
- name: Format | |
run: | | |
cd .github/actions/build-refs | |
npm run format-check | |
- name: Lint | |
run: | | |
cd .github/actions/build-refs | |
npm run lint | |
- name: Test | |
run: | | |
cd .github/actions/build-refs | |
npm run test | |
- name: Update built action | |
run: | | |
cd .github/actions/build-refs | |
npm run build | |
git update-index --refresh | |
git config user.name 'Opentrons CI' | |
git config user.email '[email protected]' | |
git add dist/index.js || echo "No changes from build" | |
git commit -m 'update action' && git push || echo "Not pushing build" |