This repository was archived by the owner on Aug 21, 2025. It is now read-only.
chore(deps): Update js minor and patch #250
This file contains hidden or 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
name: ci-cli-build | |
on: | |
pull_request: | |
types: | |
- opened | |
- synchronize | |
- reopened | |
- ready_for_review | |
permissions: | |
contents: read | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v5 | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 22.18.0 | |
- name: Install dependencies | |
run: npm install | |
- name: Build Program | |
run: npm run build | |
- name: Run Hyp CLI | |
run: ./bin/run.js |