Move to GitHub Actions (#61)
This commit is contained in:
parent
6edb0309ec
commit
cbabf27d26
|
@ -0,0 +1,23 @@
|
|||
name: CI
|
||||
on:
|
||||
- push
|
||||
- pull_request
|
||||
jobs:
|
||||
test:
|
||||
name: Node.js ${{ matrix.node-version }}
|
||||
runs-on: macos-latest
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
node-version:
|
||||
- 14
|
||||
- 12
|
||||
- 10
|
||||
- 8
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- uses: actions/setup-node@v1
|
||||
with:
|
||||
node-version: ${{ matrix.node-version }}
|
||||
- run: npm install
|
||||
- run: npm test
|
|
@ -1,6 +0,0 @@
|
|||
os: osx
|
||||
language: node_js
|
||||
node_js:
|
||||
- '12'
|
||||
- '10'
|
||||
- '8'
|
|
@ -1,4 +1,4 @@
|
|||
# create-dmg [![Build Status](https://travis-ci.com/sindresorhus/create-dmg.svg?branch=master)](https://travis-ci.com/sindresorhus/create-dmg)
|
||||
# create-dmg
|
||||
|
||||
> Create a good-looking [DMG](https://en.wikipedia.org/wiki/Apple_Disk_Image) for your macOS app in seconds
|
||||
|
||||
|
|
Loading…
Reference in New Issue