Skip to content

kubeconfig change

kubeconfig change #423

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install pnpm
uses: pnpm/[email protected]
- name: Set node
uses: actions/setup-node@v3
with:
node-version: 18.x
cache: pnpm
- name: Install
run: pnpm i
- name: Lint
run: pnpm run lint
# build:
# runs-on: ${{ matrix.os }}
#
# timeout-minutes: 10
#
# strategy:
# matrix:
# node_version: [16.x, 18.x, 20.x]
# # os: [ubuntu-latest, windows-latest, macos-latest]
# os: [macos-latest]
# fail-fast: false
#
# steps:
# - uses: actions/checkout@v3
#
# - name: Install pnpm
# uses: pnpm/[email protected]
#
# - name: Set node version to ${{ matrix.node_version }}
# uses: actions/setup-node@v3
# with:
# node-version: ${{ matrix.node_version }}
# cache: pnpm
#
# - name: Install
# run: pnpm i
#
# - name: Build
# run: pnpm run build
#
# - name: check
# run: ls dist/electron