forked from zammad/zammad
-
Notifications
You must be signed in to change notification settings - Fork 0
52 lines (50 loc) · 1.34 KB
/
ci.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
name: CI
on:
pull_request:
schedule:
# Run every on Friday to ensure everything works as expected.
- cron: '0 6 * * 5'
jobs:
CI:
runs-on: ubuntu-latest
container:
image: zammad/zammad-ci:latest
services:
postgresql:
image: postgres:16
env:
POSTGRES_USER: zammad
POSTGRES_PASSWORD: zammad
redis:
# Use Redis 5 which is shipped in Debian 10.
image: redis:5
env:
RAILS_ENV: test
Z_LOCALES: "en-us:de-de"
TZ: 'Europe/London'
REDIS_URL: redis://redis:6379
# Compile assets only once.
CI_SKIP_ASSETS_PRECOMPILE: 'true'
# Avoid unnecessary DB resets.
CI_SKIP_DB_RESET: 'true'
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Cache node modules
id: cache-npm
uses: actions/cache@v4
with:
path: .yarn/cache
key: ${{ runner.os }}-cache-npm-${{ hashFiles('yarn.lock') }}
- name: Cache Rubygems
id: cache-bundler
uses: actions/cache@v4
with:
path: vendor/ruby
key: ${{ runner.os }}-cache-bundler-${{ hashFiles('Gemfile.lock') }}
- name: Pre
run: .github/workflows/ci/pre.sh
- name: Lint
run: .github/workflows/ci/lint.sh
- name: Test
run: .github/workflows/ci/test.sh