Upgrade to hpa v2 and update to k8s 1.23 #75
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: Lint | |
on: pull_request | |
jobs: | |
eslint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: mrdivyansh/[email protected] | |
# GITHUB_TOKEN in forked repositories is read-only | |
# https://help.github.com/en/actions/reference/events-that-trigger-workflows#pull-request-event-pull_request | |
if: ${{ github.event_name == 'push' || github.event.pull_request.head.repo.full_name == github.repository }} | |
with: | |
repo-token: ${{secrets.GITHUB_TOKEN}} | |
eslint-rc: /pkg/web/.eslintrc.js | |
execute-on-files: /pkg/web/src |