Bump floki from 0.36.2 to 0.36.3 in the mix-patching group #248
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: | |
pull_request: | |
types: | |
- opened | |
- reopened | |
- synchronize | |
jobs: | |
Lint_Mix: | |
name: Lint (Mix) | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/[email protected] | |
- name: Compile | |
run: docker compose build | |
- name: Format | |
run: docker compose run dashboard mix format | |
Lint_Credo: | |
name: Lint (Credo) | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/[email protected] | |
- name: Compile | |
run: docker compose build | |
- name: Lint | |
run: docker compose run dashboard mix credo --all | |
Lint_Eslint: | |
name: Lint (ESLint) | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/[email protected] | |
- name: Compile | |
run: docker compose build | |
- name: Lint | |
run: docker compose run -w /opt/app/assets dashboard npm run lint:js | |
Lint_Stylelint: | |
name: Lint (Stylelint) | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/[email protected] | |
- name: Compile | |
run: docker compose build | |
- name: Lint | |
run: docker compose run -w /opt/app/assets dashboard npm run lint:css | |
Test_Mix: | |
name: Test (Mix) | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/[email protected] | |
- name: Compile | |
run: docker compose build | |
- name: Test | |
run: docker compose run dashboard mix test | |
Build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/[email protected] | |
- name: Build | |
run: docker build . |