Skip to content

chore: Bump brace-expansion from 5.0.4 to 5.0.5 (#65) #229

chore: Bump brace-expansion from 5.0.4 to 5.0.5 (#65)

chore: Bump brace-expansion from 5.0.4 to 5.0.5 (#65) #229

Workflow file for this run

name: tests
on:
push:
branches: [ master, renovate/** ]
pull_request:
branches: [ master ]
jobs:
test:
name: Tests
if: ${{ !contains(github.event.head_commit.message, '[skip ci]') }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node-version: [ 22, 24 ]
steps:
- name: Checkout Source code
uses: actions/checkout@v6
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node-version }}
- name: Enable corepack
run: |
corepack enable
corepack prepare yarn@stable --activate
- name: Install
run: yarn
- name: Test
run: yarn test