Skip to content
This repository has been archived by the owner on Sep 20, 2024. It is now read-only.

Commit

Permalink
Merge pull request #102 from GoogleChromeLabs/actions
Browse files Browse the repository at this point in the history
Switch to GitHub Actions
  • Loading branch information
gauntface authored Aug 30, 2021
2 parents 2cf0b71 + 13fc8ee commit 469a70b
Show file tree
Hide file tree
Showing 3 changed files with 2,557 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@
"no-console": 0,
"comma-dangle": 0,
"require-jsdoc": 0,
"no-useless-escape": 0
"no-useless-escape": 0,
"indent": 0,
"prefer-const": 0
},
"parserOptions": {
"ecmaVersion": 6
Expand Down
13 changes: 13 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
on: [push,pull_request]
name: Test
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js
uses: actions/setup-node@v2
- name: Install dependencies
run: npm install
- name: Run test
run: npm test
Loading

0 comments on commit 469a70b

Please sign in to comment.