Bump command-line-args from 5.2.1 to 6.0.0 #58
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
name: Build & Test with Bun | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build-and-test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 # Checkout repo | |
- name: Setup Bun | |
uses: oven-sh/setup-bun@v1 # Setup bun | |
with: | |
bun-version: latest | |
- run: bun i # Install dependencies | |
- run: bun test # Run tests | |