mirror of
https://github.com/pure-css/pure.git
synced 2024-11-07 21:34:24 +00:00
22 lines
350 B
YAML
22 lines
350 B
YAML
|
name: Testing
|
||
|
|
||
|
on:
|
||
|
push:
|
||
|
branches: [master]
|
||
|
pull_request:
|
||
|
branches: [master]
|
||
|
|
||
|
jobs:
|
||
|
test:
|
||
|
runs-on: ubuntu-latest
|
||
|
|
||
|
steps:
|
||
|
- uses: actions/checkout@v2
|
||
|
- name: Use Node.js
|
||
|
uses: actions/setup-node@v2
|
||
|
with:
|
||
|
node-version: 14.x
|
||
|
- run: npm ci
|
||
|
- run: npm run lint
|
||
|
- run: npm test
|