Skip to content

chore(deps): update dependency postcss-nested to v5.0.6 #5292

chore(deps): update dependency postcss-nested to v5.0.6

chore(deps): update dependency postcss-nested to v5.0.6 #5292

Workflow file for this run

# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: Build and Test CI
on:
workflow_dispatch:
push:
branches: [main]
pull_request:
branches: [main]
types: [opened, synchronize, closed]
pull_request_target:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [15.x] # Add support for 12.x, 15.x later just build and unit tests
steps:
- uses: actions/checkout@v2
- name: Build and Test ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm install --force
- run: npm run install-react-mui
- run: npm run build
- run: npx jest --env=jsdom --config=jest.config.js --coverage --ci --updateSnapshot --detectOpenHandles --forceExit
- name: Codecov
uses: codecov/[email protected]