Skip to content

Bump rollup from 4.28.0 to 4.28.1 #972

Bump rollup from 4.28.0 to 4.28.1

Bump rollup from 4.28.0 to 4.28.1 #972

Workflow file for this run

name: Test
on:
workflow_dispatch:
pull_request:
push:
branches: [main]
jobs:
test-package:
name: Test Package
runs-on: ubuntu-22.04
steps:
- name: Checkout Project
uses: actions/checkout@v4.2.2
- name: Setup Node.js
uses: actions/setup-node@v4.1.0
with:
node-version-file: .nvmrc
- name: Setup Yarn
uses: threeal/setup-yarn-action@v2.0.0
- name: Test Package
run: yarn test
test-action:
name: Test Action
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-22.04, macos-14, windows-2022]
steps:
- name: Checkout Action
uses: actions/checkout@v4.2.2
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