Skip to content

Fixed tags block not being hidden on submission error causing it to hide on cancel #2077

Fixed tags block not being hidden on submission error causing it to hide on cancel

Fixed tags block not being hidden on submission error causing it to hide on cancel #2077

Workflow file for this run

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-2-${{ 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
- name: mix format
run: docker compose run app mix format --check-formatted
- name: Security lint
run: |
docker compose run app mix sobelow --config
docker compose run app mix deps.audit
- name: Dialyzer
run: |
docker compose run app mix dialyzer
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)
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: '20'
- name: Cache node_modules
id: cache-node-modules
uses: actions/cache@v4
with:
path: ./assets/node_modules
key: node_modules-${{ hashFiles('./assets/package-lock.json') }}
- name: Install npm dependencies
if: steps.cache-node-modules.outputs.cache-hit != 'true'
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