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

Bump postcss from 8.4.29 to 8.4.31 #71

Bump postcss from 8.4.29 to 8.4.31

Bump postcss from 8.4.29 to 8.4.31 #71

Workflow file for this run

name: check
on:
push:
branches: [master]
pull_request:
branches: ['*']
jobs:
test:
runs-on: ubuntu-latest
# runs-on: ${{ matrix.os }}
strategy:
matrix:
node-version: [
# 18,
20,
]
# os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: corepack enable
- run: yarn --version
- run: yarn install --immutable
- run: yarn audit
- run: yarn lint
- run: yarn test.ci