Add devcontainer setup #43
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 | |
- run: ./scripts/philomena.sh compose pull | |
- run: ./scripts/philomena.sh compose build | |
- run: ./scripts/philomena.sh compose run app run-test | |
typos: | |
name: 'Check for spelling errors' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- run: ./scripts/philomena.sh exec typos | |
shellcheck: | |
name: 'Shellcheck' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- run: ./scripts/shellcheck.sh | |
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 | |
- run: ./scripts/philomena.sh exec prettier --check . | |
lint-and-test: | |
name: 'JavaScript Linting and Unit Tests' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- run: ./scripts/philomena.sh exec npm install --prefix assets | |
- run: ./scripts/philomena.sh exec npm run --prefix assets lint | |
- run: ./scripts/philomena.sh exec npm run --prefix assets test | |
- run: ./scripts/philomena.sh exec npm run --prefix assets build |