Skip to content

chore(deps): update dependency @fullhuman/postcss-purgecss to v6 #240

chore(deps): update dependency @fullhuman/postcss-purgecss to v6

chore(deps): update dependency @fullhuman/postcss-purgecss to v6 #240

Workflow file for this run

name: Test & Build
on:
push:
branches:
- "**"
pull_request:
types: [ready_for_review, synchronize, opened]
jobs:
unit:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.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: Install
run: yarn install --frozen-lockfile
- name: Build
run: yarn build
- name: Test
run: yarn test:unit
- name: Codecov
run: ./node_modules/.bin/codecov --token=${{ secrets.CODECOV_TOKEN }}
build:
needs: unit
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.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: Install
run: yarn install --frozen-lockfile
- name: Build
run: yarn task:release
- name: Upload .zip
uses: actions/upload-artifact@master
with:
name: dist.zip
path: releases/dist.zip