update test package jest to latest #191
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: Tests | |
on: | |
push: | |
branches: | |
- main | |
- testing | |
pull_request: | |
defaults: | |
run: | |
shell: bash | |
jobs: | |
deptest: | |
name: Test | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest] | |
version: [1.2.2, 1.9.0, 1.9.1, 1.9.2, 1.9.5, 1.9.6, 1.9.7, 1.9.8, 1.9.35] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup gh | |
uses: ./ | |
with: | |
version: ${{ matrix.version }} | |
- name: Test CLI | |
run: |- | |
fianu | |
test: | |
name: Test | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, windows-latest, macos-latest-large, macos-13, macos-14] | |
version: [1.3.0, 1.9.11, 1.9.35] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup gh | |
uses: ./ | |
with: | |
version: ${{ matrix.version }} | |
- name: Test CLI | |
run: |- | |
uname -s | tr '[:upper:]' '[:lower:]' | |
fianu |