Add macos test because of it looks flaky
https://github.com/kachick/asdf-cargo-make/actions/workflows/rtx.yml
This commit is contained in:
parent
466110084b
commit
90cd64f028
1 changed files with 13 additions and 3 deletions
16
.github/workflows/test.yml
vendored
16
.github/workflows/test.yml
vendored
|
@ -16,13 +16,23 @@ jobs:
|
|||
- run: |
|
||||
npm run all
|
||||
test: # make sure the action works on a clean machine without building
|
||||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
os:
|
||||
- ubuntu-latest
|
||||
- macos-latest
|
||||
tool_versions:
|
||||
- |
|
||||
nodejs 18
|
||||
- |
|
||||
nodejs 16
|
||||
runs-on: ${{ matrix.os }}
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- uses: ./
|
||||
with:
|
||||
tool_versions: |
|
||||
nodejs 18
|
||||
tool_versions: ${{ matrix.tool_versions }}
|
||||
- run: rtx --version
|
||||
- run: rtx exec -- node --version
|
||||
- run: which node
|
||||
|
|
Loading…
Add table
Reference in a new issue