Skip to content

chore(deps): Bump postcss-preset-env from 9.1.3 to 9.1.4 #4040

chore(deps): Bump postcss-preset-env from 9.1.3 to 9.1.4

chore(deps): Bump postcss-preset-env from 9.1.3 to 9.1.4 #4040

Workflow file for this run

name: NodeCI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- name: npm install, build, lint, and test
run: |
npm ci --legacy-peer-deps
npm run lint
npm test
npm run build --if-present
env:
CI: true
- name: Calculate Test Coverage
run: |
npm run coverage
- name: Upload Test Coverage
uses: codecov/codecov-action@v1
with:
token: ${{ secrets.CODECOV_TOKEN }}