Add devcontainer setup #25
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 | |
- run: echo "$GITHUB_WORKSPACE/scripts/path" >> "$GITHUB_PATH" | |
- 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: philomena compose pull | |
- run: philomena compose build | |
- run: philomena compose run app run-test | |
typos: | |
name: 'Check for spelling errors' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- run: echo "$GITHUB_WORKSPACE/scripts/path" >> "$GITHUB_PATH" | |
- run: philomena 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 | |
- 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 |