Skip to content

Commit e86b189

Browse files
authored
Merge pull request #392 from Windvis/switch-to-github-actions
Switch to Github Actions
2 parents 2916aa0 + fe9af91 commit e86b189

File tree

3 files changed

+35
-38
lines changed

3 files changed

+35
-38
lines changed

.eslintrc.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ module.exports = {
2828
'no-debugger': 2,
2929
'eqeqeq': 2,
3030
'no-eval': 2,
31-
'linebreak-style': [2, 'unix'],
3231
'new-cap': [2, {
3332
properties: false,
3433
}],

.github/workflows/ci.yml

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
branches:
6+
- master
7+
pull_request:
8+
9+
concurrency:
10+
group: ci-${{ github.head_ref || github.ref }}
11+
cancel-in-progress: true
12+
13+
jobs:
14+
tests:
15+
runs-on: ${{ matrix.os }}
16+
17+
strategy:
18+
fail-fast: false
19+
matrix:
20+
node-version:
21+
- 10
22+
- 12
23+
- 13
24+
os:
25+
- ubuntu-latest
26+
- windows-latest
27+
28+
steps:
29+
- uses: actions/checkout@v4
30+
- uses: actions/setup-node@v4
31+
with:
32+
node-version: ${{ matrix.node-version }}
33+
cache: 'yarn'
34+
- run: yarn
35+
- run: yarn test

appveyor.yml

Lines changed: 0 additions & 37 deletions
This file was deleted.

0 commit comments

Comments
 (0)