Skip to content

Plt 1403 move all queries to utils (#54) #52

Plt 1403 move all queries to utils (#54)

Plt 1403 move all queries to utils (#54) #52

Workflow file for this run

name: Publish to NPM
on:
push:
branches:
- main
jobs:
build_and_publish:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '16.x'
registry-url: 'https://registry.npmjs.org'
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Check package versions and publish
run: yarn publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}