mirror of
https://github.com/jsdoc/jsdoc.git
synced 2025-12-08 19:46:11 +00:00
chore: migrate from Travis CI to GitHub Actions
This commit is contained in:
parent
b10fb33462
commit
3cd49c3349
20
.github/workflows/ci.yaml
vendored
Normal file
20
.github/workflows/ci.yaml
vendored
Normal file
@ -0,0 +1,20 @@
|
||||
name: Node.js CI
|
||||
on: [push, pull_request]
|
||||
jobs:
|
||||
ci:
|
||||
runs-on: ${{ matrix.os }}
|
||||
strategy:
|
||||
matrix:
|
||||
os: [ubuntu-latest, windows-latest]
|
||||
node: [10, 12, 14]
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- uses: actions/setup-node@v1
|
||||
with:
|
||||
node-version: ${{ matrix.node }}
|
||||
- name: Test and lint
|
||||
run: |
|
||||
npm install -g gulp lerna
|
||||
npm install
|
||||
lerna bootstrap
|
||||
gulp
|
||||
@ -1,7 +0,0 @@
|
||||
language: node_js
|
||||
|
||||
node_js:
|
||||
- "10"
|
||||
- "12"
|
||||
|
||||
install: npm install -g gulp lerna && npm install && lerna bootstrap
|
||||
Loading…
x
Reference in New Issue
Block a user