[READ-ONLY] Mirror of https://github.com/bombshell-dev/tab. shell autocompletions for javascript CLIs
4

Configure Feed

Select the types of activity you want to include in your feed.

add gh actions

AmirSa12 (Oct 28, 2024, 7:24 PM +0330) 045de82c ed974b9c

+30
+30
.github/workflows/ci.yml
··· 1 + name: CLI Completion Tests 2 + 3 + on: 4 + push: 5 + branches: 6 + - main 7 + pull_request: 8 + branches: 9 + - main 10 + 11 + jobs: 12 + test: 13 + strategy: 14 + matrix: 15 + os: [ubuntu-latest, macos-latest, windows-latest] 16 + runs-on: ${{ matrix.os }} 17 + 18 + steps: 19 + - uses: actions/checkout@v2 20 + 21 + - name: Set up Node.js 22 + uses: actions/setup-node@v2 23 + with: 24 + node-version: "16" 25 + 26 + - name: Install dependencies 27 + run: pnpm install 28 + 29 + - name: Run tests 30 + run: pnpm test