Skip to content
This repository has been archived by the owner on Mar 4, 2024. It is now read-only.

fix(deps): update dependency highlight.js to v11.9.0 #501

fix(deps): update dependency highlight.js to v11.9.0

fix(deps): update dependency highlight.js to v11.9.0 #501

Workflow file for this run

name: CI
on:
push:
branches: [main, 'renovate/**']
pull_request:
types: [opened, synchronize, reopened]
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.event.number || github.ref }}
cancel-in-progress: true
env:
FORCE_COLOR: 3
NODE_VERSION: 18.19.0 # renovate: datasource=node depName=node
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- name: Setup Node.js ${{ env.NODE_VERSION }}
uses: actions/setup-node@1a4442cacd436585916779262731d5b162bc6ec7 # v3.8.2
with:
node-version: ${{ env.NODE_VERSION }}
- name: Cache Yarn packages
uses: actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84 # v3.3.2
with:
path: '**/node_modules'
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
- run: yarn install --frozen-lockfile
- run: yarn test
build:
name: Build
needs: test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- name: Setup Node.js ${{ env.NODE_VERSION }}
uses: actions/setup-node@1a4442cacd436585916779262731d5b162bc6ec7 # v3.8.2
with:
node-version: ${{ env.NODE_VERSION }}
- name: Cache Yarn packages
uses: actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84 # v3.3.2
with:
path: '**/node_modules'
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
- run: yarn install --frozen-lockfile
- run: yarn build
- run: yarn build-storybook