Skip to content

build(deps): update typescript-eslint monorepo to v6.7.3 (#26) #41

build(deps): update typescript-eslint monorepo to v6.7.3 (#26)

build(deps): update typescript-eslint monorepo to v6.7.3 (#26) #41

Workflow file for this run

name: Push to main
on:
push:
branches: ["main"]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
build:
name: Build
uses: ./.github/workflows/reusable-build.yml
permissions:
contents: write
with:
artifact-name: build
test:
name: Test
uses: ./.github/workflows/reusable-test.yml
permissions:
checks: write
lint:
name: Lint
uses: ./.github/workflows/reusable-lint.yml
permissions:
checks: write
performance:
name: Performance
needs: build
uses: ./.github/workflows/reusable-performance.yml
permissions:
checks: write
with:
build-artifact-name: build
secrets:
LHCI_GITHUB_APP_TOKEN: ${{ secrets.LHCI_GITHUB_APP_TOKEN }}
deploy-gh-pages:
name: Deploy to GitHub Pages (latest)
needs: [build, lint, test, performance]
uses: ./.github/workflows/reusable-deploy-github-pages.yml
with:
build-artifact-name: build
permissions:
contents: read
pages: write
id-token: write
deploy-cloudflare-pages:
name: Deploy to Cloudflare Pages (pro)
if: fromJSON(vars.DEPLOY_TO_PRO_ON_MAIN)
needs: [build, lint, test, performance]
uses: ./.github/workflows/reusable-deploy-cloudflare-pages.yml
with:
build-artifact-name: build
secrets:
cloudflare-account-id: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
cloudflare-api-token: ${{ secrets.CLOUDFLARE_API_TOKEN }}
permissions:
contents: read
deployments: write
release:
name: Release
needs: [build, lint, test, performance]
uses: ./.github/workflows/reusable-release.yml
secrets:
npm-token: ${{ secrets.NPM_TOKEN }}
permissions:
contents: write
issues: write
pull-requests: write
id-token: write