Skip to content

Merge pull request #19 from Bezzz23/task/CCl-4093 #12

Merge pull request #19 from Bezzz23/task/CCl-4093

Merge pull request #19 from Bezzz23/task/CCl-4093 #12

Workflow file for this run

name: Push
on:
push:
branches: [ "main" ]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js 16.x
uses: actions/setup-node@v3
with:
node-version: 16.x
registry-url: 'https://registry.npmjs.org'
- name: yarn install
run: yarn install
- name: tsc
uses: icrawl/action-tsc@v1
- run: npm run build
- run: npm run test-integr
- run: npm publish --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}