build(deps-dev): bump picomatch from 2.3.1 to 2.3.2 #751
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: Check and Format | |
| # PR opened, closed or updated | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| checks: | |
| name: Run Checks | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| pull-requests: read | |
| env: | |
| PUBLIC_BACKEND_URL: ${{ vars.PUBLIC_BACKEND_URL }} | |
| PUBLIC_BACKEND_WS: ${{ vars.PUBLIC_BACKEND_WS }} | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Set up Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: "20" | |
| - name: Get dependencies | |
| run: npm ci | |
| - name: Lint and check formatting | |
| run: npx svelte-kit sync && npx svelte-check --tsconfig ./tsconfig.json && npx eslint src && npx prettier --check . |