fix: Fixed an issue where isFolder returns incorrect values for lea…
#553
This file contains hidden or 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: Verify | |
| on: | |
| push: | |
| pull_request: | |
| workflow_dispatch: | |
| jobs: | |
| verify: | |
| runs-on: ubuntu-latest | |
| name: Verify | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: actions/cache@v3 | |
| with: | |
| path: | | |
| **/node_modules | |
| ./.yarn/cache | |
| key: ${{ runner.os }}-deps-${{ hashFiles('**/yarn.lock') }} | |
| - uses: volta-cli/[email protected] | |
| - run: yarn | |
| - run: yarn lint:test | |
| - run: yarn test | |
| - run: yarn build:core | |
| - run: yarn build:web |