Skip to content

Commit

Permalink
Merge pull request #392 from Windvis/switch-to-github-actions
Browse files Browse the repository at this point in the history
Switch to Github Actions
  • Loading branch information
mansona authored Dec 10, 2024
2 parents 2916aa0 + fe9af91 commit e86b189
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 38 deletions.
1 change: 0 additions & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ module.exports = {
'no-debugger': 2,
'eqeqeq': 2,
'no-eval': 2,
'linebreak-style': [2, 'unix'],
'new-cap': [2, {
properties: false,
}],
Expand Down
35 changes: 35 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: CI

on:
push:
branches:
- master
pull_request:

concurrency:
group: ci-${{ github.head_ref || github.ref }}
cancel-in-progress: true

jobs:
tests:
runs-on: ${{ matrix.os }}

strategy:
fail-fast: false
matrix:
node-version:
- 10
- 12
- 13
os:
- ubuntu-latest
- windows-latest

steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'yarn'
- run: yarn
- run: yarn test
37 changes: 0 additions & 37 deletions appveyor.yml

This file was deleted.

0 comments on commit e86b189

Please sign in to comment.