mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 06:39:48 +00:00
20 lines
367 B
YAML
20 lines
367 B
YAML
name: Test
|
|
|
|
on: push
|
|
|
|
jobs:
|
|
Test:
|
|
name: Test
|
|
runs-on: macOS-10.14
|
|
steps:
|
|
- name: Checkout branch
|
|
uses: actions/checkout@v1
|
|
- name: Install NodeJS
|
|
uses: actions/setup-node@v1
|
|
with:
|
|
node-version: 10
|
|
- name: Bootstrap packages
|
|
run: npm run bootstrap
|
|
- name: Run tests
|
|
run: npm test
|