refs #25086 - remove news date filter. Add sorting for events view #43
This file contains 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: Linting | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
jobs: | |
build: | |
name: 'Linting' | |
runs-on: ubuntu-latest | |
steps: | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '20.x' | |
- name: 'Install pnpm' | |
run: npm install -g pnpm@8 | |
- name: 'Check out repository' | |
uses: actions/checkout@v3 | |
- name: 'Install dependencies' | |
run: make install | |
- name: 'Static code analysis' | |
run: pnpm turbo run lint |