philomena/.github/workflows/elixir.yml
2025-03-17 03:04:18 +00:00

96 lines
2.4 KiB
YAML

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