Merge pull request #39 from hexlabsio/feature/transactional-functions #171
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: Build and Publish | |
on: | |
push: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [18.x] | |
steps: | |
- name: Checkout | |
uses: actions/[email protected] | |
- name: Set Version | |
run: npm --no-git-tag-version version 6.0.${{ github.run_number }} | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v1 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Install | |
run: npm ci | |
- name: Test | |
run: npm test | |
- name: Production Build | |
run: npm run build | |
- name: Authenticate with NPM registry | |
if: github.ref == 'refs/heads/master' | |
run: echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" > .npmrc | |
- name: Publish NPM package | |
if: github.ref == 'refs/heads/master' | |
run: npm publish --access public |