Skip to content

Commit

Permalink
fix(ci): also test windows builds with GHA
Browse files Browse the repository at this point in the history
- remove appveyor configuration
- remove appveyor specific scripts
- add OS matrix to github actions workflow "test"
  • Loading branch information
line-o committed Jun 26, 2021
1 parent dcd7a79 commit cfc25a9
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 67 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,21 +2,24 @@ name: test node-exist

on:
pull_request:
branches: [ master, develop ]
branches:
- master

push:
branches:
- develop
- master

workflow_dispatch:

jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
node-version: [10.x, 12.x, 14.x]
docker-tag: [latest, release, 4.7.1]

runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2

Expand All @@ -38,7 +41,7 @@ jobs:
run: docker start exist-ci

- name: Wait for existdb startup
run: sleep 30
run: sleep 20

- name: npm test
run: npm test
25 changes: 0 additions & 25 deletions appveyor.yml

This file was deleted.

28 changes: 0 additions & 28 deletions ci/setup.ps1

This file was deleted.

10 changes: 0 additions & 10 deletions ci/teardown.ps1

This file was deleted.

0 comments on commit cfc25a9

Please sign in to comment.