Skip to content

build(deps-dev): bump @typescript-eslint/eslint-plugin from 6.7.4 to 6.9.1 in /desktop-app #180

build(deps-dev): bump @typescript-eslint/eslint-plugin from 6.7.4 to 6.9.1 in /desktop-app

build(deps-dev): bump @typescript-eslint/eslint-plugin from 6.7.4 to 6.9.1 in /desktop-app #180

Workflow file for this run

name: Nextron CI
on:
pull_request_target:
jobs:
authorize:
environment: ${{ github.event_name == 'pull_request_target' && github.event.pull_request.head.repo.full_name != github.repository && 'external' || 'internal' }}
runs-on: ubuntu-latest
steps:
- run: true
build:
needs: authorize
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.sha || github.ref }}
- name: Set Node.js 18.x
uses: actions/setup-node@v3
with:
node-version: 18.x
- name: Run install
uses: borales/actions-yarn@v4
with:
cmd: install # will run `yarn install` command
dir: desktop-app
- name: Build production bundle
uses: borales/actions-yarn@v4
with:
cmd: build # will run `yarn build` command
dir: desktop-app