Skip to content

Commit

Permalink
Use Github Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
junderw committed Jun 13, 2022
1 parent becfd26 commit 2f99d56
Show file tree
Hide file tree
Showing 4 changed files with 3,355 additions and 16 deletions.
60 changes: 60 additions & 0 deletions .github/workflows/main_ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
name: Run Tests

on:
push:
branches:
- master
pull_request:

permissions:
contents: read

jobs:
unit:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14, 'lts/*']
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
steps:
- uses: actions/checkout@ec3a7ce113134d7a93b817d10a8272cb61118579 # v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@eeb10cff27034e7acf239c5d29f62154018672fd # v3
with:
node-version: ${{ matrix.node-version }}
registry-url: https://registry.npmjs.org/
cache: 'npm'
- run: npm i
- run: npm run unit
coverage:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14, 'lts/*']
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
steps:
- uses: actions/checkout@ec3a7ce113134d7a93b817d10a8272cb61118579 # v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@eeb10cff27034e7acf239c5d29f62154018672fd # v3
with:
node-version: ${{ matrix.node-version }}
registry-url: https://registry.npmjs.org/
cache: 'npm'
- run: npm i
- run: npm run coverage
lint:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14, 'lts/*']
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
steps:
- uses: actions/checkout@ec3a7ce113134d7a93b817d10a8272cb61118579 # v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@eeb10cff27034e7acf239c5d29f62154018672fd # v3
with:
node-version: ${{ matrix.node-version }}
registry-url: https://registry.npmjs.org/
cache: 'npm'
- run: npm i
- run: npm run standard
15 changes: 0 additions & 15 deletions .travis.yml

This file was deleted.

Loading

0 comments on commit 2f99d56

Please sign in to comment.