-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Feature better tests and ease debugging (#31)
- Loading branch information
1 parent
051bc12
commit d8b07eb
Showing
10 changed files
with
2,537 additions
and
8 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
--- | ||
name: Update rebar.lock | ||
|
||
"on": | ||
push: | ||
branches: | ||
- main | ||
pull_request: | ||
branches: | ||
- "*" | ||
workflow_dispatch: {} | ||
merge_group: | ||
|
||
concurrency: | ||
group: ${{github.workflow}}-${{github.ref}} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
branch: | ||
outputs: | ||
head_ref: ${{steps.branch.outputs.head_ref}} | ||
|
||
runs-on: ubuntu-24.04 | ||
|
||
steps: | ||
- id: branch | ||
run: | | ||
head_ref=${GITHUB_HEAD_REF} | ||
echo "head_ref is ${head_ref}" | ||
echo "head_ref=${head_ref}" > "${GITHUB_OUTPUT}" | ||
update: | ||
name: Update rebar.lock | ||
|
||
needs: [branch] | ||
|
||
if: endsWith(needs.branch.outputs.head_ref, 'rebar.config-deps') | ||
|
||
runs-on: ubuntu-24.04 | ||
|
||
steps: | ||
- uses: actions/create-github-app-token@31c86eb3b33c9b601a1f60f98dcbfd1d70f379b4 # v1.10.3 | ||
id: app-token | ||
with: | ||
app-id: ${{vars.ARIZONA_BOT_APP_ID}} | ||
private-key: ${{secrets.ARIZONA_BOT_PRIVATE_KEY}} | ||
|
||
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | ||
with: | ||
token: ${{steps.app-token.outputs.token}} | ||
ref: ${{needs.branch.outputs.head_ref}} | ||
|
||
- uses: erlef/setup-beam@b9c58b0450cd832ccdb3c17cc156a47065d2114f # v1.18.1 | ||
with: | ||
version-type: strict | ||
version-file: .tool-versions | ||
|
||
- run: | | ||
rebar3 upgrade --all | ||
if ! git diff --exit-code >/dev/null; then | ||
# there's stuff to push | ||
git config user.name "arizona[bot]" | ||
git config user.email "arizona_bot_@user.noreply.github.com" | ||
git add rebar.lock | ||
git commit -m "[automation] update \`rebar.lock\` after Renovate" | ||
git push | ||
fi | ||
env: | ||
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,4 +2,5 @@ _build | |
doc/ | ||
erl_crash.dump | ||
rebar3.crashdump | ||
node_modules/ | ||
rebar.lock |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"arrowParens": "always", | ||
"bracketSpacing": true, | ||
"singleQuote": true, | ||
"trailingComma": "all" | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
import globals from 'globals'; | ||
import pluginJs from '@eslint/js'; | ||
|
||
export default [ | ||
{ files: ['**/*.js'], languageOptions: { sourceType: 'script' } }, | ||
{ languageOptions: { globals: globals.browser } }, | ||
pluginJs.configs.recommended, | ||
]; |
Oops, something went wrong.