⬆️ Update jest monorepo #282
Workflow file for this run
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: "CI" | |
on: | |
pull_request: | |
push: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version-file: ".nvmrc" | |
- run: | | |
yarn install | |
- run: | | |
yarn all | |
- name: Upload coverage reports to Codecov | |
uses: codecov/codecov-action@v3 | |
test: # make sure the action works on a clean machine without building | |
strategy: | |
matrix: | |
os: [windows-latest, ubuntu-latest, macos-latest, ubuntu-22.04] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: ./ | |
with: | |
groovy-version: 4.x | |
- name: Display groovy version | |
run: groovy --version |