Bump qs from 6.10.1 to 6.11.0 #14
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Lint Code and Verify | |
on: | |
push: | |
branches: | |
- development | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: '20' | |
registry-url: 'https://registry.npmjs.org' | |
cache: 'yarn' | |
- name: yarn install | |
run: | | |
yarn install | |
- name: yarn lint | |
run: | | |
yarn lint | |
- name: Build Storybook | |
run: | | |
yarn release-storybook | |
- name: Build Package Release | |
run: | | |
yarn release |