mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2025-01-25 06:41:36 -07:00
31 lines
912 B
YAML
31 lines
912 B
YAML
on:
|
|
push:
|
|
branches-ignore:
|
|
- 'dev'
|
|
jobs:
|
|
test-build:
|
|
runs-on: docker
|
|
container:
|
|
image: iceshrimp.dev/iceshrimp/ci-env:latest
|
|
options: --volume /opt/iceshrimp-cache/yarn:/iceshrimp-caches/yarn
|
|
services:
|
|
database:
|
|
image: postgres:15
|
|
env:
|
|
POSTGRES_PASSWORD: "test"
|
|
redis:
|
|
image: redis
|
|
steps:
|
|
- name: Clone repository
|
|
run: git clone https://iceshrimp.dev/iceshrimp/iceshrimp.git --branch=${{ github.ref_name }} --depth=1 .
|
|
- name: Install build dependencies
|
|
run: |
|
|
cp -Tr /iceshrimp-caches/yarn .yarn
|
|
yarn --immutable
|
|
rm -rf /iceshrimp-caches/yarn/* && cp -Tr .yarn /iceshrimp-caches/yarn
|
|
- name: Build the shrimp
|
|
run: yarn build:debug
|
|
- name: Test the shrimp
|
|
run: |
|
|
cp .config/ci.yml .config/default.yml
|
|
yarn run migrate
|