1
0
mirror of https://github.com/tabler/tabler.git synced 2026-01-09 06:00:09 +04:00

Refactor bundlewatch workflow to use Turbo (#2119)

This commit is contained in:
Paweł Kuna
2025-02-03 02:54:15 +01:00
committed by GitHub
parent 09a7e10ef1
commit a370919ebe
5 changed files with 28 additions and 5 deletions

View File

@@ -1,8 +1,7 @@
name: Test build
on:
pull_request:
types: [ opened, reopened ]
pull_request: null
env:
NODE: 20
@@ -17,6 +16,14 @@ jobs:
- name: Clone repository
uses: actions/checkout@v4
- name: Cache turbo build setup
uses: actions/cache@v4
with:
path: .turbo
key: ${{ runner.os }}-turbo-${{ github.sha }}
restore-keys: |
${{ runner.os }}-turbo-
- name: Set up Node.js
uses: actions/setup-node@v4
with: