make function sync #296
Workflow file for this run
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: Pull Request Build | |
on: pull_request | |
jobs: | |
publish: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- uses: actions/setup-node@v1 | |
with: | |
node-version: 14 | |
- run: yarn | |
- run: yarn build | |
- run: yarn test | |
- name: Bump version | |
run: | | |
git reset --hard | |
echo yarn version --prerelease --preid "pr$PR_ID.$BUILD_NUMBER" --no-git-tag-version | |
yarn version --prerelease --preid "pr$PR_ID.$BUILD_NUMBER" --no-git-tag-version | |
git status -vv | |
yarn build | |
git add . || true | |
git commit -m "Bump prerelease version" || true | |
env: | |
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} | |
PR_ID: ${{ github.event.number }} | |
BUILD_NUMBER: ${{ github.run_number }} | |
- name: npm publish | |
run: | | |
echo PR package tag is [pr$PR_ID.$BUILD_NUMBER] | |
npm config set //registry.npmjs.org/:_authToken=$NPM_AUTH_TOKEN | |
npm publish --tag "pr$PR_ID.$BUILD_NUMBER" | |
env: | |
NPM_AUTH_TOKEN: ${{secrets.NPM_AUTH_TOKEN}} | |
PR_ID: ${{ github.event.number }} | |
BUILD_NUMBER: ${{ github.run_number }} |