chore(deps): update dependency typescript to v7 #3077
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: | |
| push: | |
| pull_request: | |
| jobs: | |
| ci: | |
| name: CI | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 30 | |
| steps: | |
| - name: 📥 Checkout source | |
| uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7 | |
| - name: 📥 Install dependencies | |
| run: npm ci | |
| - name: "🔍 Static analysis: run ESLint" | |
| run: npm run lint | |
| - name: "🔍 Static analysis: run Prettier" | |
| run: npm run format |