From ea79fcd258f1ad129ac5054f70ef1fa731f44299 Mon Sep 17 00:00:00 2001 From: Jorge Bucaran Date: Wed, 8 Jul 2020 00:53:35 +0900 Subject: [PATCH] gitignore fail: re-add files --- .github/workflows/ci.yml | 23 +++++++++++++++++++++++ .gitignore | 2 +- test/.gitkeep | 0 3 files changed, 24 insertions(+), 1 deletion(-) create mode 100644 .github/workflows/ci.yml create mode 100644 test/.gitkeep diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 000000000..088c2b427 --- /dev/null +++ b/.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 \ No newline at end of file diff --git a/.gitignore b/.gitignore index 80be73cfd..018d1706a 100644 --- a/.gitignore +++ b/.gitignore @@ -1,7 +1,6 @@ .idea/ .vscode/ -.* *.log* *.xml index.html @@ -11,3 +10,4 @@ coverage *.gz dist/ +.DS_STORE \ No newline at end of file diff --git a/test/.gitkeep b/test/.gitkeep new file mode 100644 index 000000000..e69de29bb