You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
522 B
27 lines
522 B
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/[email protected]
|
|
with:
|
|
version: latest
|
|
|
|
- name: Install Dependencies
|
|
run: pnpm install
|
|
|
|
- name: Trunk Check
|
|
uses: trunk-io/trunk-action@v1
|
|
with:
|
|
trunk-token: ${{ secrets.TRUNK_TOKEN }}
|
|
|