Skip to content

chore(deps): bump streamx from 2.18.0 to 2.20.1 #317

chore(deps): bump streamx from 2.18.0 to 2.20.1

chore(deps): bump streamx from 2.18.0 to 2.20.1 #317

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
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
node-version: [16, 18, 20]
exist-version: [latest, release, 5.5.1, 4.11.1]
services:
# Label used to access the service container
exist:
image: existdb/existdb:${{ matrix.exist-version }}
ports:
- 8443:8443
volumes:
- ${{ github.workspace }}/empty:/exist/autodeploy
options: >-
--health-interval 4s
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
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@v2
with:
fetch-depth: 0
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: 20
- name: Install dependencies
run: npm ci
- name: Release
run: npx semantic-release@23
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}