migrate login code to typescript #5222
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: Pull Request | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.run_id }} | |
| cancel-in-progress: true | |
| on: | |
| pull_request: | |
| branches: | |
| - master | |
| - release* | |
| paths-ignore: | |
| - '**/*.md' | |
| jobs: | |
| build: | |
| name: Build 🏗️ | |
| if: ${{ always() && !cancelled() }} | |
| uses: ./.github/workflows/__package.yml | |
| with: | |
| commit: ${{ github.event.pull_request.head.sha }} | |
| quality_checks: | |
| name: Quality checks 👌🧪 | |
| if: ${{ always() && !cancelled() }} | |
| uses: ./.github/workflows/__quality_checks.yml | |
| permissions: {} | |
| with: | |
| commit: ${{ github.event.pull_request.head.sha }} | |
| codeql: | |
| name: GitHub CodeQL 🔬 | |
| if: ${{ always() && !cancelled() }} | |
| uses: ./.github/workflows/__codeql.yml | |
| permissions: | |
| actions: read | |
| contents: read | |
| security-events: write | |
| with: | |
| commit: ${{ github.event.pull_request.head.sha }} | |
| run-eslint: | |
| name: Run eslint suggestions | |
| if: ${{ github.repository == 'jellyfin/jellyfin-web' }} | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out Git repository | |
| uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 | |
| with: | |
| ref: ${{ github.event.pull_request.head.sha }} | |
| - name: Setup node environment | |
| uses: actions/setup-node@249970729cb0ef3589644e2896645e5dc5ba9c38 # v6.5.0 | |
| with: | |
| node-version-file: .nvmrc | |
| cache: npm | |
| check-latest: true | |
| - name: Install Node.js dependencies | |
| run: npm ci --no-audit | |
| - name: Run eslint | |
| uses: CatChen/eslint-suggestion-action@2b07b898c0dd5a016586d22b54282199b79cd358 # v4.1.33 | |
| with: | |
| github-token: ${{ secrets.GITHUB_TOKEN }} |