mirror of
https://github.com/trezor/trezor-suite.git
synced 2026-03-25 00:27:12 +01:00
We are getting many deprecation warnings in actions since GitHub is going to use node 20 as https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/
15 lines
236 B
YAML
15 lines
236 B
YAML
name: "[Check]: Shell validation"
|
|
|
|
on:
|
|
pull_request:
|
|
paths:
|
|
- "**.sh"
|
|
jobs:
|
|
shellcheck:
|
|
runs-on: ubuntu-20.04
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: shellcheck
|
|
run: ./scripts/shellcheck.sh
|