refactor: rewrite in rust (cli) #414
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
types: | |
- opened | |
- synchronize | |
- ready_for_review | |
env: | |
GHJK_LOG: debug | |
GHJK_LOG_PANIC_LEVEL: error | |
DENO_DIR: .deno-dir | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
jobs: | |
changes: | |
runs-on: ubuntu-latest | |
permissions: | |
pull-requests: read | |
steps: | |
- uses: actions/checkout@v4 | |
test-pre-commit: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: dsherret/rust-toolchain-file@v1 | |
# run ghjk once to avoid trigger file changes when | |
# pre commit runs ghjk. We'll always see changes | |
# to lock.json since GITHUB_TOKEN is different | |
# in the CI | |
- run: deno task self print config | |
- uses: pre-commit/[email protected] | |
env: | |
SKIP: ghjk-resolve | |
test-e2e: | |
runs-on: "${{ matrix.os }}" | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- os: ubuntu-latest | |
platform: linux/x86_64 | |
- os: custom-arm | |
platform: linux/aarch64 | |
- os: macos-latest | |
platform: darwin/x86_64 | |
- os: macos-14 | |
platform: darwin/aarch64 | |
# - os: windows-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: dsherret/rust-toolchain-file@v1 | |
- name: Cache deno dir | |
uses: actions/cache@v4 | |
with: | |
path: ${{ env.DENO_DIR }} | |
key: deno-${{ hashFiles('**/deno.lock') }} | |
- if: "${{ matrix.os == 'ubuntu-latest' || matrix.os == 'custom-arm' }}" | |
run: | | |
# we need coreutils on max for the `timeout` command | |
sudo apt update | |
sudo apt install -y --no-install-recommends fish zsh | |
- if: "${{ matrix.os == 'macos-latest' || matrix.os == 'macos-14' }}" | |
# we need coreutils on max for the `timeout` command | |
run: brew install fish zsh coreutils | |
- run: deno task test | |
test-action: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: dsherret/rust-toolchain-file@v1 | |
- uses: metatypedev/setup-ghjk@318209a9d215f70716a4ac89dbeb9653a2deb8bc | |
with: | |
installer-url: ./install.ts | |
env: | |
GHJKFILE: ./examples/protoc/ghjk.ts | |
- run: | | |
cd examples/tasks | |
. $(ghjk print share-dir-path)/env.sh | |
ghjk x hey |