Skip to content

build(deps): bump coverallsapp/github-action from 1.1.3 to 1.2.4 (#1077) #1789

build(deps): bump coverallsapp/github-action from 1.1.3 to 1.2.4 (#1077)

build(deps): bump coverallsapp/github-action from 1.1.3 to 1.2.4 (#1077) #1789

name: Build / Test
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x, 16.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: npm install, lerna bootstrap, run build and test
run: |
npm i -g npm
npm i
npm run build --if-present
npm run lint
npm run test -- -- --coverage
- name: Coveralls GitHub Action
uses: coverallsapp/github-action@v1.2.4
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
path-to-lcov: ./packages/purgecss/coverage/lcov.info
env:
CI: true