Skip to content

build(deps): bump linkify-it from 5.0.1 to 5.0.2 #286

build(deps): bump linkify-it from 5.0.1 to 5.0.2

build(deps): bump linkify-it from 5.0.1 to 5.0.2 #286

Workflow file for this run

name: Test
on:
pull_request:
schedule:
- cron: '0 22 * * 3'
workflow_call:
permissions: {}
jobs:
test:
name: Test
strategy:
fail-fast: false
matrix:
node-version:
- '22.12.x'
os:
- macos-latest
- ubuntu-22.04
- windows-latest
runs-on: "${{ matrix.os }}"
permissions:
contents: read
steps:
- name: Install Linux Dependencies
if: ${{ matrix.os == 'ubuntu-22.04' }}
run: sudo apt-get update && sudo apt-get install --no-install-recommends -y libasound2 libgtk-3-0 libnss3 libxss1 libxtst6 xvfb libgbm-dev
- name: Checkout
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
with:
persist-credentials: false
- name: Setup Node.js
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
with:
node-version: "${{ matrix.node-version }}"
cache: 'yarn'
- name: Install dependencies
run: yarn install --immutable
- name: Lint
run: yarn lint
- name: Build
run: yarn build
- name: Test
run: yarn test