Skip to content

Merge pull request #459 from senacor/feature/refactor_validation #261

Merge pull request #459 from senacor/feature/refactor_validation

Merge pull request #459 from senacor/feature/refactor_validation #261

Workflow file for this run

name: Release
on:
push:
branches:
- master
- 'alpha/**'
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [ 18.x ]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: npm ci
- run: npm run build --if-present
- run: npm run test
- name: NPM package release
id: publish
uses: JS-DevTools/npm-publish@v3
with:
token: ${{ secrets.NPM_TOKEN }}
access: public
- name: Print version update
if: steps.publish.outputs.type != 'none'
run: |
echo "Version changed: ${{ steps.publish.outputs.old-version }} => ${{ steps.publish.outputs.version }}"
- name: Github release
uses: softprops/action-gh-release@v2
if: steps.publish.outputs.type != 'none'
with:
name: Release v${{ steps.publish.outputs.version }}
tag_name: v${{ steps.publish.outputs.version }}
prerelease: ${{ contains(github.head_ref, 'alpha') }}