mirror of
https://github.com/meshtastic/meshtastic.git
synced 2024-11-10 07:34:11 -08:00
28 lines
522 B
YAML
28 lines
522 B
YAML
name: Nightly
|
|
on:
|
|
schedule:
|
|
- cron: 0 8 * * 1-5
|
|
workflow_dispatch: {}
|
|
|
|
jobs:
|
|
trunk_check:
|
|
name: Trunk Check Upload
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Setup pnpm
|
|
uses: pnpm/action-setup@v2.2.1
|
|
with:
|
|
version: latest
|
|
|
|
- name: Install Dependencies
|
|
run: pnpm install
|
|
|
|
- name: Trunk Check
|
|
uses: trunk-io/trunk-action@v1
|
|
with:
|
|
trunk-token: ${{ secrets.TRUNK_TOKEN }}
|