Skip to content

Bump braces from 3.0.2 to 3.0.3 #330

Bump braces from 3.0.2 to 3.0.3

Bump braces from 3.0.2 to 3.0.3 #330

Workflow file for this run

name: CI
on:
pull_request: ~
push:
branches: [main]
jobs:
ci:
name: 'Test: Node ${{ matrix.node-version }} - Stylelint ${{ matrix.stylelint-version }} - Prettier ${{ matrix.prettier-version }}'
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
stylelint-version: [16.x]
node-version: [20.x, 18.x]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: yarn
- name: Use Stylelint ${{ matrix.stylelint-version }}
run: yarn upgrade stylelint@${{ matrix.stylelint-version }} --ignore-engines
- name: Install
run: yarn install --ignore-engines
- name: Test
run: yarn run test