Skip to content

Commit

Permalink
gitignore fail: re-add files
Browse files Browse the repository at this point in the history
  • Loading branch information
jorgebucaran committed Jul 7, 2020
1 parent 7a9134c commit ea79fcd
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 1 deletion.
23 changes: 23 additions & 0 deletions .github/workflows/ci.yml
@@ -0,0 +1,23 @@
name: CI
on: push
jobs:
test:
env:
NODE_ENV: development
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [8.x, 10.x, 12.x, 14.x]
steps:
- name: Checkout
uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Test
run: |
npm install -g codecov
npm install
npm test
codecov
2 changes: 1 addition & 1 deletion .gitignore
@@ -1,7 +1,6 @@
.idea/
.vscode/

.*
*.log*
*.xml
index.html
Expand All @@ -11,3 +10,4 @@ coverage

*.gz
dist/
.DS_STORE
Empty file added test/.gitkeep
Empty file.

0 comments on commit ea79fcd

Please sign in to comment.