Skip to content

Commit

Permalink
add lab workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
leonitousconforti committed Sep 25, 2024
1 parent 2ec589f commit 92fda51
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/lab.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Lab

on:
workflow_dispatch:

jobs:
lab:
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 18.x
- uses: pnpm/action-setup@v4
- run: pnpm install
- run: pnpm check
- run: pnpm build
- run: pnpm lint
- uses: mxschmitt/action-tmate@v3
if: ${{ always() }}

0 comments on commit 92fda51

Please sign in to comment.