瀏覽代碼

Convert to new GitHub Actions yaml format

tags/v3.0.2
Phillip Johnsen GitHub 6 年之前
父節點
當前提交
fc8eb5dfe6
沒有發現已知的金鑰在資料庫的簽署中 GPG Key ID: 4AEE18F83AFDEB23
共有 1 個文件被更改,包括 22 次插入0 次删除
  1. +22
    -0
      .github/workflows/verify.yml

+ 22
- 0
.github/workflows/verify.yml 查看文件

@@ -0,0 +1,22 @@
name: Verify changes

on: [push]

jobs:
build:
runs-on: ubuntu-latest

strategy:
matrix:
node-version: [0.10.x, 0.12.x, 4.x, 6.x, 8.x, 10.x, 12.x]

steps:
- uses: actions/checkout@v1
- name: Setup Node.js
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: npm install and test
run: |
npm install
npm test

Loading…
取消
儲存