Skip to content

Bump stylelint-config-standard from 29.0.0 to 36.0.1 #429

Bump stylelint-config-standard from 29.0.0 to 36.0.1

Bump stylelint-config-standard from 29.0.0 to 36.0.1 #429

Workflow file for this run

name: CI
on: [push]
jobs:
test:
name: tests
runs-on: macos-latest
strategy:
matrix:
node-version: ['18', '20']
steps:
- name: Setup Xcode version
uses: maxim-lobanov/setup-xcode@v1
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "dir=$(yarn cache dir)" >> $GITHUB_OUTPUT
- uses: actions/cache@v3
id: yarn-cache
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- name: Install repository dependencies
run: yarn install
- name: Build
run: yarn build
- name: Run tests
run: yarn test