Skip to content

chore(deps): update dependency date-fns to v2.30.0 #5918

chore(deps): update dependency date-fns to v2.30.0

chore(deps): update dependency date-fns to v2.30.0 #5918

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: [16.x] # Add support for 12.x, 15.x later just build and unit tests
steps:
- uses: actions/checkout@v3
- name: Build and Test ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: npm install --force
- run: npm run install-react-mui
- run: npm run build
- run: node --experimental-vm-modules --max-old-space-size=4096 node_modules/.bin/jest --env=jsdom --config=jest.config.js --coverage --ci --updateSnapshot --detectOpenHandles --forceExit
- name: Codecov
uses: codecov/codecov-action@v1.5.2