Skip to content

bump: bump version

bump: bump version #14

Workflow file for this run

name: Release Lib
on:
push:
tags:
- '*'
jobs:
test:
runs-on: ubuntu-latest
env:
REPO_ACCESS_TOKEN: ${{ secrets.REPO_ACCESS_TOKEN }}
steps:
- name: Disable EOL conversions
run: git config --global core.autocrlf false
- name: Checkout
uses: actions/checkout@master
with:
ref: ${{ github.ref }}
fetch-depth: 0
- name: Integration tests
uses: actions/setup-node@v3
with:
node-version: "18.x"
cache: "yarn"
- run: yarn
- run: yarn lint
- run: yarn test
env:
CLIENT_ID: ${{ secrets.CLIENT_ID }}
CLIENT_SECRET: ${{ secrets.CLIENT_SECRET }}
- run: yarn build
- run: npm publish