Bump @eslint/js from 9.4.0 to 9.6.0 #466
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: Test | |
on: | |
workflow_dispatch: | |
pull_request: | |
push: | |
branches: [main] | |
jobs: | |
test-workspaces: | |
name: Test Workspaces | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4.1.7 | |
- name: Setup Node.js | |
uses: actions/setup-node@v4.0.2 | |
with: | |
node-version: latest | |
- name: Setup Yarn | |
uses: threeal/setup-yarn-action@v2.0.0 | |
with: | |
version: stable | |
- name: Test Workspaces | |
run: yarn workspaces foreach --all --topological run test | |
test-action: | |
name: Test Action | |
runs-on: ${{ matrix.os }}-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [windows, ubuntu, macos] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4.1.7 | |
with: | |
path: pipx-install-action | |
sparse-checkout: | | |
action.yml | |
dist | |
sparse-checkout-cone-mode: false | |
- name: Install Packages | |
uses: ./pipx-install-action | |
with: | |
packages: black ruff==0.3.0 | |
- name: Check Packages | |
shell: bash | |
run: | | |
black --version | |
VERSION="$(ruff --version)" | |
if [ "$VERSION" != "ruff 0.3.0" ]; then | |
echo "Expected 'ruff 0.3.0' but instead got '$VERSION'" | |
exit 1 | |
fi |