Skip to content

chore(deps): bump @adobe/css-tools from 4.2.0 to 4.3.1 #266

chore(deps): bump @adobe/css-tools from 4.2.0 to 4.3.1

chore(deps): bump @adobe/css-tools from 4.2.0 to 4.3.1 #266

Workflow file for this run

name: CI
on:
push:
branches:
- main
- master
- feature/*
jobs:
build:
timeout-minutes: 15
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '16.x'
- uses: actions/cache@v2
id: yarn-cache
with:
path: |
**/node_modules
**/.eslintcache
${{ steps.yarn-cache-dir-path.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- name: Install modules
run: yarn install --frozen-lockfile
- name: Run tests
run: yarn test