Skip to content

Bump postcss from 8.4.49 to 8.5.1 #7831

Bump postcss from 8.4.49 to 8.5.1

Bump postcss from 8.4.49 to 8.5.1 #7831

name: Continuous integration
on:
pull_request:
workflow_call:
secrets:
CODECOV_TOKEN:
required: true
workflow_dispatch:
jobs:
ci:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Cache the node_modules dir
uses: actions/cache@v4
with:
path: node_modules
key: ${{ runner.os }}-node_modules-${{ hashFiles('yarn.lock') }}
- name: Install
run: yarn install --immutable
- name: Format
run: yarn checkformatting
- name: Lint
run: yarn lint
- name: Typecheck
run: |
yarn typecheck
- name: Test
run: yarn test
- name: Upload coverage report
uses: codecov/codecov-action@v4
with:
files: ./coverage/coverage-final.json
token: ${{ secrets.CODECOV_TOKEN }}