Fix the clean
command for docker container prune
. It has no --all
flag`
#2945
Workflow file for this run
This file contains hidden or 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: Philomena Build | |
on: [push, pull_request] | |
jobs: | |
build: | |
name: 'Build Elixir app' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Cache mix deps | |
uses: actions/cache@v4 | |
with: | |
path: | | |
_build | |
.cargo | |
deps | |
key: ${{ runner.os }}-deps-3-${{ hashFiles('mix.lock') }} | |
- name: Enable caching | |
run: | | |
# Disable volumes so caching can take effect | |
sed -i -Ee 's/- app_[a-z]+_data:.*$//g' docker-compose.yml | |
# Make ourselves the owner | |
echo "RUN addgroup -g $(id -g) -S appgroup && adduser -u $(id -u) -S appuser -G appgroup" >> docker/app/Dockerfile | |
echo "USER appuser" >> docker/app/Dockerfile | |
echo "RUN mix local.hex --force && mix local.rebar --force" >> docker/app/Dockerfile | |
- run: docker compose pull | |
- run: docker compose build | |
- name: Build and test | |
run: docker compose run app run-test | |
typos: | |
name: 'Check for spelling errors' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: crate-ci/typos@master | |
cargo: | |
name: Rust Linting and Unit Tests | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Rust | |
uses: dtolnay/rust-toolchain@stable | |
- name: cargo fmt | |
run: (cd native/philomena && cargo fmt --check) | |
- name: cargo clippy | |
run: (cd native/philomena && cargo clippy -- -D warnings) | |
- name: cargo test | |
run: (cd native/philomena && cargo test) | |
prettier: | |
name: 'Prettier Formatting Check' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: '22' | |
cache: 'npm' | |
- run: npm ci --ignore-scripts | |
- run: npx prettier --check . | |
lint-and-test: | |
name: 'JavaScript Linting and Unit Tests' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '22' | |
cache: 'npm' | |
- run: npm ci --ignore-scripts | |
working-directory: ./assets | |
- run: npm run lint | |
working-directory: ./assets | |
- run: npm run test | |
working-directory: ./assets | |
- run: npm run build | |
working-directory: ./assets | |
repo-init-script: | |
name: 'Repo Init Script' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
- run: ./scripts/init.sh | |
- run: typos --version | |
- run: npx prettier --version |