Skip to content

Commit

Permalink
Feature better tests and ease debugging (#31)
Browse files Browse the repository at this point in the history
  • Loading branch information
paulo-ferraz-oliveira authored Jul 21, 2024
1 parent 051bc12 commit d8b07eb
Show file tree
Hide file tree
Showing 10 changed files with 2,537 additions and 8 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,12 +46,14 @@ jobs:
- name: Continuous Integration
run: |
rebar3 as test ci
npm run format-lint
- name: Test release
run: |
rebar3 release
_build/default/rel/arizona_example/bin/arizona_example daemon
curl -f -v http://127.0.0.1:8080
npm run test
_build/default/rel/arizona_example/bin/arizona_example stop
- name: Check if build left artifacts
Expand Down
69 changes: 69 additions & 0 deletions .github/workflows/rebar-lock.yml
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}}
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,5 @@ _build
doc/
erl_crash.dump
rebar3.crashdump
node_modules/
rebar.lock
6 changes: 6 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"arrowParens": "always",
"bracketSpacing": true,
"singleQuote": true,
"trailingComma": "all"
}
8 changes: 8 additions & 0 deletions eslint.config.mjs
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,
];
Loading

0 comments on commit d8b07eb

Please sign in to comment.