Skip to content

v4.17.0: upgrade eslint, VfSmartSelect generics and bug fixes #78

v4.17.0: upgrade eslint, VfSmartSelect generics and bug fixes

v4.17.0: upgrade eslint, VfSmartSelect generics and bug fixes #78

Workflow file for this run

on:
push:
tags:
- 'v*'
name: Release
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20.x
- run: yarn install --immutable
- run: yarn test:types
- run: yarn format
- run: yarn lint
- run: git diff --exit-code
- run: yarn build
- uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref }}
body: ' '
- uses: JS-DevTools/npm-publish@v3
with:
token: ${{ secrets.NPM_TOKEN }}