-
Notifications
You must be signed in to change notification settings - Fork 0
50 lines (42 loc) · 1.02 KB
/
tests-webhook.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
name: ✅ Tests webhook 🌍
on:
push:
branches:
- "**"
- "!v*"
tags-ignore:
- "**"
concurrency:
cancel-in-progress: true
group: tests-webhook-${{ github.ref_name }}
jobs:
tests:
name: Tests
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include:
- nodeVersion: 16.17 # minimum requirement
- nodeVersion: 18
- nodeVersion: 20
steps:
- name: Checkout repository
uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.nodeVersion }}
cache: 'yarn'
- name: Yarn install
run: |
yarn workspaces focus ~webhook
- name: write .kontinuous/config.yaml
shell: bash
run: |
mkdir -p $HOME/.kontinuous
echo "
links:
socialgouv/kontinuous: ${GITHUB_WORKSPACE}
" > $HOME/.kontinuous/config.yaml
- name: Run tests
run: yarn workspace ~webhook test