[READ-ONLY] Mirror of https://github.com/danielroe/roe.dev. This is the code and content for my personal website, built in Nuxt. roe.dev
0

Configure Feed

Select the types of activity you want to include in your feed.

roe.dev / .github / workflows / nuxt-nightly.yml
639 B 29 lines
1name: nuxt-nightly 2 3on: 4 # schedule: 5 # - cron: "0 5 * * 1,3,5" # monday,wednesday,friday 5AM 6 workflow_dispatch: 7 push: 8 branches: 9 ci/nightly 10 11jobs: 12 test: 13 timeout-minutes: 30 14 runs-on: ubuntu-latest 15 steps: 16 - uses: actions/checkout@v4 17 - run: corepack enable 18 - uses: actions/setup-node@v4 19 with: 20 node-version: 20 21 cache: "pnpm" 22 - name: Install dependencies 23 run: pnpm install 24 25 - name: Nuxt Nightly 26 uses: danielroe/nuxt-nightly-action@4032862665755e7721530c3e5855607c73158426 27 env: 28 GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} 29