Skip to content

clean

clean #7

Workflow file for this run

name: lint
on:
schedule:
- cron: "30 01 * * *"
push:
branches: ['*']
pull_request:
types: [opened, synchronize]
jobs:
yarn-setup:
runs-on: ubuntu-latest
steps:
- name: Setup repository
uses: actions/checkout@v4
- name: nvm
run: nvm use
- name: Corepack
run: corepack enable
- name: Install packages
run: yarn install
- name: install desktop
run: cd packages/desktop-frontend && yarn install