Skip to content

Bump postcss from 8.4.12 to 8.4.31 #58

Bump postcss from 8.4.12 to 8.4.31

Bump postcss from 8.4.12 to 8.4.31 #58

Workflow file for this run

name: Running Code Coverage
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
with:
fetch-depth: 1
- name: Setup Node.js environment
uses: actions/setup-node@v2.4.1
with:
node-version: 16
cache: 'npm'
- name: Install dependencies
run: npm install --save-dev
- name: Build
run: npm run build
- name: Run tests
run: npm run test:coverage
- name: Codecov
uses: codecov/codecov-action@v2.1.0
with:
token: ${{ secrets.CODECOV_TOKEN }}