Skip to content

Downgrade gulp-autoprefixer since it breaks build #273

Downgrade gulp-autoprefixer since it breaks build

Downgrade gulp-autoprefixer since it breaks build #273

Workflow file for this run

name: CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [ 12.x ]
steps:
- name: SCM checkout
uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install lcov
run: sudo apt-get install lcov
- name: Install dependencies
run: npm ci
- name: Lint
run: npm run lint
- name: Build
run: npm run dist
- name: Test
run: npm test
- name: Coverage report
run: lcov --summary coverage/Firefox*/lcov.info