-
-
Notifications
You must be signed in to change notification settings - Fork 4
68 lines (64 loc) · 1.98 KB
/
semantic-release.yml
File metadata and controls
68 lines (64 loc) · 1.98 KB
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
59
60
61
62
63
64
65
66
67
68
name: Semantic Release
on: [push, pull_request]
# Tests cannot run on windows due to issues with the windows server 2019 images
# the github action runners are using not being able to run linux docker images
# https://github.com/actions/virtual-environments/issues/1143
permissions:
id-token: write # Required for OIDC
contents: write # To create GitHub releases
jobs:
build:
runs-on: ubuntu-latest
continue-on-error: ${{ matrix.experimental }}
strategy:
fail-fast: false
matrix:
node-version: [20, 22, 24]
exist-version: [4.10.0, 5.4.1, release]
experimental: [false]
include:
- node-version: 24
exist-version: latest
experimental: true
services:
# Label used to access the service container
exist:
image: existdb/existdb:${{ matrix.exist-version }}
ports:
- 8443:8443
- 8080:8080
# emptying the autodeploy folder will lead to /db/apps having a different owner
# which consistently leads to a permission issue during test runs
# volumes:
# - ${{ github.workspace }}/xquery:/exist/autodeploy
options: >-
--health-interval 4s
steps:
- uses: actions/checkout@v6
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm test
release:
name: Release
runs-on: ubuntu-latest
needs: build
if: github.ref == 'refs/heads/main'
steps:
- name: Checkout
uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Setup Node.js
uses: actions/setup-node@v6
with:
node-version: 24
- name: Install dependencies
run: npm ci
- name: Release
run: npx semantic-release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NODE_AUTH_TOKEN }}