#10 - validate the link values from the function + tests #7
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: 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}} |