chore: bump lwc versions #197
Workflow file for this run
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: Lint and unit tests | |
| on: | |
| push: | |
| branches: | |
| - master | |
| - 'spring*' | |
| - 'summer*' | |
| - 'winter*' | |
| pull_request: | |
| branches: | |
| - master | |
| - 'spring*' | |
| - 'summer*' | |
| - 'winter*' | |
| jobs: | |
| lint-unit-tests: | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Setup Node | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: '20.19.5' | |
| cache: 'yarn' | |
| - name: Install dependencies | |
| run: yarn install --frozen-lockfile | |
| - name: Check formatting | |
| run: yarn format:check | |
| - name: Run linter | |
| run: yarn lint | |
| - name: Run unit tests | |
| run: yarn test | |