-
Notifications
You must be signed in to change notification settings - Fork 1
58 lines (47 loc) · 1.43 KB
/
validation.yml
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
53
54
55
56
57
58
name: validation
on: push
jobs:
lint-and-test:
runs-on: ubuntu-latest
steps:
- name: Checkout Redmine
uses: actions/checkout@v4
with:
repository: redmine/redmine
ref: 5.1-stable
- name: Checkout Tracky
uses: actions/checkout@v4
with:
repository: renuo/redmine_tracky
path: plugins/redmine_tracky
- name: Cache gems
uses: actions/cache@v3
with:
path: vendor/bundle
key: gems-${{ hashFiles('Gemfile', 'plugins/redmine_tracky/PluginGemfile.lock') }}
- name: Cache Node modules
uses: actions/cache@v3
with:
path: plugins/redmine_tracky/assets.src/node_modules
key: npm-${{ hashFiles('plugins/redmine_tracky/assets.src/package-lock.json') }}
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: '3.1.2'
- name: Set up Node
uses: actions/setup-node@v4
with:
node-version: latest
- name: Start MySQL
run: sudo service mysql start
- name: Setup Tracky
working-directory: plugins/redmine_tracky
run: bin/setup
env:
GITHUB_ACTIONS: true
- name: Run linters
working-directory: plugins/redmine_tracky
run: bundle exec rake lint
- name: Run tests
working-directory: plugins/redmine_tracky
run: bundle exec rake test