2019-12-08 04:07:49 +01:00
|
|
|
name: Philomena Build
|
|
|
|
|
2020-11-26 21:23:07 +01:00
|
|
|
on: [push, pull_request]
|
2019-12-08 04:07:49 +01:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
2022-01-31 20:28:38 +01:00
|
|
|
name: 'Build Elixir app'
|
2019-12-08 04:07:49 +01:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2024-04-03 14:11:11 +02:00
|
|
|
- uses: actions/checkout@v4
|
2020-12-01 03:40:30 +01:00
|
|
|
|
2021-10-09 21:58:07 +02:00
|
|
|
- name: Cache mix deps
|
2024-04-03 14:11:11 +02:00
|
|
|
uses: actions/cache@v4
|
2020-12-01 03:40:30 +01:00
|
|
|
with:
|
|
|
|
path: |
|
|
|
|
_build
|
2024-06-19 00:51:49 +02:00
|
|
|
.cargo
|
2020-12-01 03:40:30 +01:00
|
|
|
deps
|
2024-06-19 01:45:35 +02:00
|
|
|
key: ${{ runner.os }}-deps-2-${{ hashFiles('mix.lock') }}
|
2024-06-19 00:51:49 +02:00
|
|
|
|
|
|
|
- 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
|
2020-12-01 03:40:30 +01:00
|
|
|
|
2024-04-03 14:11:11 +02:00
|
|
|
- run: docker compose pull
|
|
|
|
- run: docker compose build
|
2020-12-01 03:40:30 +01:00
|
|
|
|
2020-10-26 22:01:29 +01:00
|
|
|
- name: Build and test
|
2024-04-03 14:11:11 +02:00
|
|
|
run: docker compose run app run-test
|
2020-12-01 03:40:30 +01:00
|
|
|
|
2021-04-01 18:49:41 +02:00
|
|
|
- name: Security lint
|
|
|
|
run: |
|
2024-04-03 14:11:11 +02:00
|
|
|
docker compose run app mix sobelow --config
|
|
|
|
docker compose run app mix deps.audit
|
2024-06-18 19:46:16 +02:00
|
|
|
|
2024-06-19 01:45:35 +02:00
|
|
|
- name: Dialyzer
|
|
|
|
run: |
|
|
|
|
docker compose run app mix dialyzer
|
|
|
|
|
2024-06-18 19:46:16 +02:00
|
|
|
typos:
|
|
|
|
name: 'Check for spelling errors'
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v4
|
|
|
|
- uses: crate-ci/typos@master
|
|
|
|
|
2022-01-31 20:28:38 +01:00
|
|
|
lint-and-test:
|
|
|
|
name: 'JavaScript Linting and Unit Tests'
|
2021-10-09 21:58:07 +02:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2024-04-03 14:11:11 +02:00
|
|
|
- uses: actions/checkout@v4
|
2021-10-09 21:58:07 +02:00
|
|
|
|
|
|
|
- name: Setup Node.js
|
2024-04-03 14:11:11 +02:00
|
|
|
uses: actions/setup-node@v4
|
2021-10-09 21:58:07 +02:00
|
|
|
with:
|
2024-04-03 14:11:11 +02:00
|
|
|
node-version: '20'
|
2021-10-09 21:58:07 +02:00
|
|
|
|
|
|
|
- name: Cache node_modules
|
|
|
|
id: cache-node-modules
|
2024-04-03 14:11:11 +02:00
|
|
|
uses: actions/cache@v4
|
2021-10-09 21:58:07 +02:00
|
|
|
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
|
|
|
|
|
2022-01-31 20:28:38 +01:00
|
|
|
- run: npm run lint
|
|
|
|
working-directory: ./assets
|
|
|
|
|
|
|
|
- run: npm run test
|
2021-10-09 21:58:07 +02:00
|
|
|
working-directory: ./assets
|