This repository has been archived by the owner on Jan 24, 2024. It is now read-only.
chore(deps): update dependency stylelint to v14.16.1 #1055
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: Check codes | |
on: [push] | |
jobs: | |
build: | |
timeout-minutes: 10 | |
permissions: | |
contents: read | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 | |
- name: Setting up Node.js | |
uses: actions/setup-node@8f152de45cc393bb48ce5d89d36b731f54556e65 # v4 | |
with: | |
node-version-file: .node-version | |
cache: npm | |
- name: npm install | |
run: npm ci --no-audit --no-fund | |
- name: lint | |
run: npm run lint | |
- name: build source | |
run: npm run build | |
- name: test | |
run: | | |
npm run test:ci | |
npx [email protected] | |
- name: build storybook | |
run: npm run build-storybook |