Skip to content

Commit

Permalink
chore(linting): switch to standard/gh actions (#96)
Browse files Browse the repository at this point in the history
  • Loading branch information
wraithgar authored Apr 26, 2021
1 parent 7824b39 commit 1fd850d
Show file tree
Hide file tree
Showing 8 changed files with 5,263 additions and 584 deletions.
3 changes: 0 additions & 3 deletions .eslintrc

This file was deleted.

30 changes: 30 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions

name: Node.js CI

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]

jobs:
build:

runs-on: ubuntu-latest

strategy:
matrix:
node-version: [12.x, 14.x, 16.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/

steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm test

6 changes: 0 additions & 6 deletions .npmignore

This file was deleted.

8 changes: 0 additions & 8 deletions .travis.yml

This file was deleted.

Loading

0 comments on commit 1fd850d

Please sign in to comment.