-
Notifications
You must be signed in to change notification settings - Fork 0
42 lines (35 loc) · 1.14 KB
/
ourstage-tests.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
# This workflow will do a clean installation of node dependencies, cache/
# restore them, build the "ourstage" project and run tests.
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs
name: ourstage-tests
on:
push:
branches: ['main']
paths:
- '.github/workflows/ourstage-tests.yaml'
- 'src/backstage/ourstage/**'
pull_request:
branches: ['main']
paths:
- '.github/workflows/ourstage-tests.yaml'
- 'src/backstage/ourstage/**'
# Enable manual triggers.
workflow_dispatch:
env:
CI: true
# DEBUG: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
id: node-install
with:
node-version-file: './.nvmrc'
cache: 'yarn'
cache-dependency-path: './src/backstage/ourstage/**/yarn.lock'
- name: Make
id: make
working-directory: ./src/backstage/ourstage/
run: make