build(deps-dev): bump semantic-release from 23.0.5 to 23.0.6 (#146) #390
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test | |
on: [push, pull_request] | |
jobs: | |
test: | |
name: Test | |
runs-on: ubuntu-20.04 | |
timeout-minutes: 15 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Build the test Docker image | |
run: docker build --no-cache --target test-env --tag wait-for-test . | |
- name: Run the tests | |
run: docker run wait-for-test | |
release: | |
name: Release | |
runs-on: ubuntu-20.04 | |
timeout-minutes: 20 | |
# Prevents running multiple release scripts at the same time | |
concurrency: 'release' | |
needs: | |
- test | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version-file: ".nvmrc" | |
cache: 'npm' | |
- name: Install dependencies | |
run: npm ci | |
- name: Release | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: npx semantic-release |