1
0
mirror of https://github.com/woodpecker-ci/woodpecker.git synced 2025-03-29 20:39:54 +02:00

no corepack

This commit is contained in:
pat-s 2024-05-02 22:03:11 +02:00
parent 1f7c9961a8
commit c687a7a043
No known key found for this signature in database
GPG Key ID: 3C6318841EF78925

View File

@ -30,7 +30,7 @@ steps:
image: *bun_image image: *bun_image
directory: web/ directory: web/
commands: commands:
- corepack enable # - corepack enable
- bun lint - bun lint
when: *when when: *when
@ -40,7 +40,7 @@ steps:
image: *bun_image image: *bun_image
directory: web/ directory: web/
commands: commands:
- corepack enable # - corepack enable
- bun format:check - bun format:check
when: *when when: *when
@ -50,7 +50,7 @@ steps:
image: *bun_image image: *bun_image
directory: web/ directory: web/
commands: commands:
- corepack enable # - corepack enable
- bun typecheck - bun typecheck
when: *when when: *when
@ -60,6 +60,6 @@ steps:
image: *bun_image image: *bun_image
directory: web/ directory: web/
commands: commands:
- corepack enable # - corepack enable
- bun test - bun test
when: *when when: *when