djLint/docs/node_modules/gulp-postcss/.github/workflows/test.yml
2021-12-14 09:57:37 +01:00

30 lines
498 B
YAML

name: Test
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
npm-test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: ['10', '12', '14']
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: |
npm install
npm test
- uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}