Skip to content

Commit

Permalink
update lint and build workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Kreezag committed Dec 22, 2024
1 parent 04cb10a commit b9620bd
Showing 1 changed file with 9 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,16 @@ jobs:

steps:
- uses: actions/checkout@v3
- uses: c-hive/gha-yarn-cache@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'yarn'
- run: yarn install
- run: yarn lint
- run: yarn test
- run: yarn generate
- name: Install JS dependencies
run: yarn install
- name: Lint code style
run: yarn lint
- name: Run tests
run: yarn test
- name: Build dist files
run: yarn generate

0 comments on commit b9620bd

Please sign in to comment.