File tree Expand file tree Collapse file tree 2 files changed +17
-0
lines changed Expand file tree Collapse file tree 2 files changed +17
-0
lines changed Original file line number Diff line number Diff line change 68
68
sudo mv aptos /usr/local/bin/
69
69
chmod +x /usr/local/bin/aptos
70
70
aptos update movefmt
71
+ - uses : actions/setup-node@v4
72
+ with :
73
+ node-version-file : " package.json"
74
+ # Libusb is a build requirement for the node-hid package and so pnpm
75
+ # install will fail if this isn't in the build environment and if a
76
+ # precompiled binary isn't found.
77
+ - name : Install libusb
78
+ run : sudo apt install -y libusb-1.0-0-dev libudev-dev
79
+ - uses : pnpm/action-setup@v4
80
+ name : Install pnpm
81
+ with :
82
+ run_install : true
71
83
-
uses :
pre-commit/[email protected]
Original file line number Diff line number Diff line change @@ -25,6 +25,11 @@ repos:
25
25
)
26
26
- repo : local
27
27
hooks :
28
+ - id : turbo-fix
29
+ name : Run turbo fix on packages changed since the last commit
30
+ language : system
31
+ entry : sh -c 'TURBO_SCM_BASE="HEAD^1" pnpm turbo fix --affected'
32
+ pass_filenames : false
28
33
# Hooks for the remote executor
29
34
- id : cargo-fmt-remote-executor
30
35
name : Cargo format for remote executor
You can’t perform that action at this time.
0 commit comments