philomena/.github/workflows/elixir.yml

81 lines
2.1 KiB
YAML
Raw Normal View History

name: Philomena Build
2020-11-26 21:23:07 +01:00
on: [push, pull_request]
jobs:
build:
name: 'Build Elixir app'
runs-on: ubuntu-latest
steps:
2024-04-03 14:11:11 +02:00
- uses: actions/checkout@v4
- name: Cache mix deps
2024-04-03 14:11:11 +02:00
uses: actions/cache@v4
with:
path: |
_build
2024-06-19 00:51:49 +02:00
.cargo
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
2024-04-03 14:11:11 +02:00
- run: docker compose pull
- run: docker compose build
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
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
lint-and-test:
name: 'JavaScript Linting and Unit Tests'
runs-on: ubuntu-latest
steps:
2024-04-03 14:11:11 +02:00
- uses: actions/checkout@v4
- name: Setup Node.js
2024-04-03 14:11:11 +02:00
uses: actions/setup-node@v4
with:
2024-04-03 14:11:11 +02:00
node-version: '20'
- name: Cache node_modules
id: cache-node-modules
2024-04-03 14:11:11 +02:00
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