Skip to content

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

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

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

Workflow file for this run

name: GitHub Actions
on:
# Trigger the workflow on push or pull request,
# but only for the master branch on Push and any branches on PR
push:
branches:
- master
pull_request:
branches:
- '**'
env:
CI: true
PREFERRED_WORKSPACE_MANAGER: yarn
jobs:
run:
name: Node ${{ matrix.node }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node: [16]
steps:
- name: Clone repository
uses: actions/checkout@v2
with:
fetch-depth: 3
- uses: actions/cache@v2
with:
path: ~/.cache/yarn
key: ${{ runner.os }}-node-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-node-
- name: Set Node.js version
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node }}
- run: node --version
- run: npm --version
- name: Install npm/yarn dependencies
run: yarn install
- name: Website Prod Build (GitHub demo site)
run: yarn build:demo
# always deploy (re-publish) GitHub demo page with a Prod build
- name: Deploy to gh-pages
uses: peaceiris/actions-gh-pages@v3
if: github.ref == 'refs/heads/master'
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./docs