Skip to content

fix(page)!: rename namespaces-usage by clusters-usage #400

fix(page)!: rename namespaces-usage by clusters-usage

fix(page)!: rename namespaces-usage by clusters-usage #400

Workflow file for this run

name: build
on:
push:
branches: [main]
pull_request:
branches: [main]
concurrency:
group: build-${{ github.ref }}
cancel-in-progress: true
jobs:
check-commits:
runs-on: ubuntu-22.04
steps:
- name: Check out repository
uses: actions/checkout@v2
with:
fetch-depth: 0
- if: "(github.actor != 'dependabot[bot]') && !startsWith(github.head_ref, 'dependabot/')"
name: Check commits
uses: wagoid/commitlint-github-action@v2
build:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v2.1.0
- uses: actions/setup-node@v2
with:
node-version: "12.16.2"
- id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn cache dir)"
- uses: actions/cache@v1
id: yarn-cache
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- name: install dependencies
run: yarn
- name: analyse code
run: yarn lint
- name: build
run: yarn build