Skip to content

Bump postcss from 8.5.14 to 8.5.15 #6462

Bump postcss from 8.5.14 to 8.5.15

Bump postcss from 8.5.14 to 8.5.15 #6462

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
jobs:
test:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version-file: 'package.json'
check-latest: true
- name: Install dependencies
run: npm ci
- name: Typecheck
run: node --run typecheck
- name: ESLint
run: node --run eslint
- name: Oxfmt
run: node --run format:check
- name: Bundle
run: node --run build
- name: Build website
run: node --run build:website
- name: Install Playwright Browsers
run: npx playwright install chromium firefox
timeout-minutes: 2
- name: Test
run: node --run test:ci
timeout-minutes: 4
- name: Upload test failure artifacts
if: failure()
uses: actions/upload-artifact@v7
with:
name: test-artifacts
path: |
test/**/__screenshots__/**
test/**/__traces__/**
.vitest-attachments/test/**
if-no-files-found: ignore
- name: Upload coverage
uses: codecov/codecov-action@v6
with:
token: ${{ secrets.CODECOV_TOKEN }}
- name: Deploy gh-pages
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
run: |
git config --global user.email 'action@github.com'
git config --global user.name 'GitHub Action'
git fetch origin gh-pages
git worktree add gh-pages gh-pages
cd gh-pages
git rm -r .
mv ../dist/* .
touch .nojekyll
git add .
git commit -m "gh-pages deployment" || echo "Nothing to commit"
git push -f https://comcast:${{secrets.GITHUB_TOKEN}}@github.com/Comcast/react-data-grid.git