Basic CI and working-directory
option
#1
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: Test | ||
on: pull_request | ||
permissions: | ||
pull-requests: write # for comments in PRs | ||
jobs: | ||
sample: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
with: # required! | ||
fetch-depth: 0 | ||
- name: Install bun | ||
uses: oven-sh/setup-bun@v2 | ||
with: | ||
bun-version: latest | ||
- name: Show the bun lock diff | ||
working-directory: test | ||
uses: ./.. | ||
Check failure on line 19 in .github/workflows/test.yml GitHub Actions / TestInvalid workflow file
|