Skip to content

Commit

Permalink
actions: Move tests to Github Actions
Browse files Browse the repository at this point in the history
This commit is to move tests from travis CI to Github Actions.
  • Loading branch information
govindgoel committed Jun 11, 2021
1 parent a038d99 commit d22c669
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: tests
on: [pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [4.x, 6.x, 8.x, 10.x]
steps:
- uses: actions/checkout@v2
- name: Setup with Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Cache Node.js modules
uses: actions/cache@v2
with:
path: ~/.npm
key: ${{ runner.OS }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.OS }}-node-
${{ runner.OS }}-
- name: Install dependencies
run: npm install grunt-cli
- name: "Build dist files"
run: grunt build
- name: "Run tests"
run: npm test

0 comments on commit d22c669

Please sign in to comment.