Skip to content

v5.2.0: Update query method to take a string rather than a query obje… #17

v5.2.0: Update query method to take a string rather than a query obje…

v5.2.0: Update query method to take a string rather than a query obje… #17

Workflow file for this run

name: Warrant Node
on:
push:
tags:
- 'v[0-9]+.[0-9]+.[0-9]+'
jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Node Environment
uses: actions/setup-node@v3
with:
registry-url: 'https://registry.npmjs.org'
- name: Build, Test, and Publish
run: |
npm ci
npm run build
npm test
npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_ACCESS_TOKEN }}