chore(deps): update dependency @types/semver to v7.5.2 #372
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: Release test | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
get-version: | |
if: | | |
github.event.commits[0].message == | |
'chore(release): trigger release process [ci release]' | |
runs-on: ubuntu-latest | |
timeout-minutes: 5 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0 | |
with: | |
fetch-depth: 0 | |
- name: Fetch tags | |
run: git fetch --tags | |
- name: Setup node | |
uses: actions/setup-node@5e21ff4d9bc1a8cf6de233a3057d20ec6b3fb69d # v3.8.1 | |
with: | |
node-version: '12.x' | |
- name: Install project | |
run: npm ci --ignore-scripts | |
- name: Build (artefacts) | |
run: | | |
npm run build | |
npm link | |
- name: Get release version | |
run: next-standard-version |