-
Notifications
You must be signed in to change notification settings - Fork 25
41 lines (39 loc) · 1.35 KB
/
test-with-foreman.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
name: Test foreman with foreman-js
on: [push, pull_request, workflow_dispatch]
jobs:
test-foreman:
runs-on: ubuntu-latest
strategy:
fail-fast: false
steps:
- uses: ruby/setup-ruby@v1
with:
ruby-version: 2.7
- name: Use Node.js
uses: actions/setup-node@v1
with:
node-version: 14.x
- name: Checkout foreman-js
uses: actions/checkout@v2
with:
path: ./projects/foreman-js
- name: Checkout foreman
uses: actions/checkout@v2
with:
repository: theforeman/foreman
path: ./projects/foreman
- name: Install foreman-js npm dependencies
run: npm install
working-directory: ${{ github.workspace }}/projects/foreman-js
- name: Install foreman npm dependencies
run: npm install
working-directory: ${{ github.workspace }}/projects/foreman
- name: Link foreman-js to foreman
run: npm run link -- --location '${{ github.workspace }}/projects/foreman'
working-directory: ${{ github.workspace }}/projects/foreman-js
- name: Run ${{ matrix.repo }} tests
run: npm test
working-directory: ${{ github.workspace }}/projects/foreman
- name: Run ${{ matrix.repo }} lint
run: npm run lint
working-directory: ${{ github.workspace }}/projects/foreman