mirror of
https://github.com/any86/any-rule.git
synced 2025-07-14 07:38:58 +08:00
20 lines
290 B
YAML
20 lines
290 B
YAML
name: Node CI
|
|
|
|
on: [push]
|
|
|
|
jobs:
|
|
test:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@master
|
|
- name: Use Node.js 10.x
|
|
uses: actions/setup-node@v1
|
|
with:
|
|
node-version: 10.x
|
|
- name: test
|
|
run: |
|
|
npm i
|
|
npm run test:rules
|