feat: Add general retry handling and non retriable error #329
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: CI | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
env: | |
MIX_ENV: test | |
permissions: | |
pull-requests: read | |
statuses: write | |
jobs: | |
test: | |
name: Test | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup Elixir | |
uses: erlef/setup-beam@v1 | |
with: | |
otp-version: 25.3 | |
elixir-version: 1.14.4 | |
- name: Set Node.js 20.x | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 20.x | |
- name: Install inngest-cli | |
run: | | |
npm i -g inngest-cli | |
inngest-cli version | |
- name: Dependency cache | |
uses: actions/cache@v3 | |
with: | |
path: | | |
deps | |
# _build | |
key: mix-test-${{ runner.os }}-${{ hashFiles('**/mix.lock') }} | |
restore-keys: | | |
mix-test-${{ runner.os }}-${{ hashFiles('**/mix.lock') }} | |
mix-test-${{ runner.os }}- | |
mix-test- | |
- name: Install dependencies | |
run: make deps | |
- name: Build | |
run: make build | |
- name: Run tests with coverage | |
run: mix coveralls.json | |
env: | |
MIX_ENV: test | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Upload coverage reports to Codecov | |
uses: codecov/codecov-action@v3 | |
env: | |
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} | |
formatter: | |
name: Formatter | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup Elixir | |
uses: erlef/setup-beam@v1 | |
with: | |
otp-version: 25.3 | |
elixir-version: 1.14.4 | |
- name: Dependency cache | |
uses: actions/cache@v3 | |
with: | |
path: | | |
deps | |
_build | |
key: mix-fmt-${{ runner.os }}-${{ hashFiles('**/mix.lock') }} | |
restore-keys: | | |
mix-fmt-${{ runner.os }}-${{ hashFiles('**/mix.lock') }} | |
mix-fmt-${{ runner.os }}- | |
mix-fmt- | |
- name: Install dependencies | |
run: make deps | |
- name: Run Formatter | |
run: make fmt | |
linter: | |
name: Linter | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup Elixir | |
uses: erlef/setup-beam@v1 | |
with: | |
otp-version: 25.3 | |
elixir-version: 1.14.4 | |
- name: Dependency cache | |
uses: actions/cache@v3 | |
with: | |
path: | | |
deps | |
_build | |
key: mix-lint-${{ runner.os }}-${{ hashFiles('**/mix.lock') }} | |
restore-keys: | | |
mix-lint-${{ runner.os }}-${{ hashFiles('**/mix.lock') }} | |
mix-lint-${{ runner.os }}- | |
mix-lint- | |
- name: Install dependencies | |
run: make deps | |
- name: Run Linter | |
run: make lint | |
dialyzer: | |
name: Dialyzer | |
runs-on: ubuntu-latest | |
env: | |
MIX_ENV: dev | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup Elixir | |
uses: erlef/setup-beam@v1 | |
with: | |
otp-version: 25.3 | |
elixir-version: 1.14.4 | |
- name: Dependency cache | |
uses: actions/cache@v3 | |
with: | |
path: | | |
deps | |
_build | |
key: mix-dialyzer-${{ runner.os }}-${{ hashFiles('**/mix.lock') }} | |
restore-keys: | | |
mix-dialyzer-${{ runner.os }}-${{ hashFiles('**/mix.lock') }} | |
mix-dialyzer-${{ runner.os }}- | |
mix-dialyzer- | |
- name: Install dependencies | |
run: make deps | |
- name: Run Dialyzer | |
run: make dialyzer | |
conventional-commit-lint: | |
name: Validate PR title | |
runs-on: ubuntu-latest | |
steps: | |
- uses: amannn/action-semantic-pull-request@v5 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
wip: true |