Skip to content

#10 - validate the link values from the function + tests #7

#10 - validate the link values from the function + tests

#10 - validate the link values from the function + tests #7

Workflow file for this run

name: Beta release
on:
push:
branches:
- dev
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
- name: Install npm dependencies
run: npm ci
- name: Run tests
run: npm run test:jest
release:
runs-on: ubuntu-latest
needs: test
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
registry-url: https://registry.npmjs.org
- name: Install npm dependencies
run: npm ci
- name: Run build
run: npm run build
- name: Update the package version
if: github.ref == 'refs/heads/dev'
run: node scripts/update-package-version.js $GITHUB_RUN_ID
- name: Publish release
run: npm publish --tag next --access public
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_PUBLISH_TOKEN}}