chore(deps): update dependency semver to v7.7.3 #1018
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: CI | |
| on: [pull_request, push] | |
| jobs: | |
| test: | |
| name: Run test suit | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repo | |
| uses: actions/checkout@v3 | |
| - name: Setup node | |
| uses: actions/setup-node@v3 | |
| with: | |
| node-version: 19.x | |
| - name: Install PNPM | |
| run: npm i -g pnpm | |
| - name: Install dependencies | |
| run: pnpm install | |
| - name: Run Tests | |
| run: pnpm test:ci | |
| lint: | |
| name: Check code lint | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repo | |
| uses: actions/checkout@v3 | |
| - name: Setup node | |
| uses: actions/setup-node@v3 | |
| with: | |
| node-version: 'lts/*' | |
| - name: Install PNPM | |
| run: npm i -g pnpm | |
| - name: Install dependencies | |
| run: pnpm install | |
| - name: Run Lint | |
| run: pnpm lint |