-
Notifications
You must be signed in to change notification settings - Fork 4
36 lines (31 loc) · 1.08 KB
/
github_server.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
name: GitHub server tests
on:
push:
workflow_dispatch:
inputs:
tags:
required: False
description: 'Optional. Use a "tag expression" specify which tagged tests to run (https://cucumber.io/docs/cucumber/api/#tag-expressions)'
# Only test 2 tests - one uses an env var, the other uses AL.
# They test if env vars get set correctly and depencencies get
# pulled in correctly.
default: '@e6 or @al1'
jobs:
github-server-tests:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
env:
USER1_EMAIL: ${{ secrets.USER1_EMAIL }}
USER1_PASSWORD: ${{ secrets.USER1_PASSWORD }}
SECRET_VAR1: secret-var1-value
SECRET_VAR2: secret-var2-value
SECRET_FOR_MISSING_FIELD: secret for missing field
steps:
- uses: actions/checkout@v3
- name: Run ALKiln on the GitHub server
uses: SuffolkLITLab/ALKiln/github_server@start_server_take_2
with:
CONFIG_CONTENTS: "${{ secrets.CONFIG_CONTENTS }}"
- run: echo "Finished running on the GitHub server"