Skip to content

Merge pull request #59 from sasza2/feat/export-arrow-interface #2

Merge pull request #59 from sasza2/feat/export-arrow-interface

Merge pull request #59 from sasza2/feat/export-arrow-interface #2

Workflow file for this run

name: Deployment production
on:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Node
uses: actions/setup-node@v2
with:
node-version: '21.2.0'
registry-url: 'https://registry.npmjs.org'
- name: Install dependencies and build
run: npm ci && npm run lint && npm run test
- name: Publish package
run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}