Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/icons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXhmikosR <xhmikosr@gmail.com>2019-10-02 18:05:59 +0300
committerXhmikosR <xhmikosr@gmail.com>2019-10-02 18:35:10 +0300
commit426bdf3d4770733d20675dd618d022498d12c91c (patch)
tree798fb96b3ece9fdc2b88e27d67f8b34013acf79e /.github
parente8c9dda593fd841b482298bc604267067770f44e (diff)
Simplify CI since we only have one job
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/test.yml12
1 files changed, 4 insertions, 8 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index 2a2c68c66..80448f036 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -2,15 +2,9 @@ name: Tests
on: [push, pull_request]
jobs:
- run:
- name: Node ${{ matrix.node }}
+ test:
runs-on: ubuntu-latest
- strategy:
- fail-fast: false
- matrix:
- node: [10]
-
steps:
- name: Clone repository
uses: actions/checkout@v1
@@ -18,7 +12,7 @@ jobs:
- name: Set up Node.js
uses: actions/setup-node@v1
with:
- node-version: ${{ matrix.node }}
+ node-version: "10"
- run: node --version
- run: npm --version
@@ -26,6 +20,8 @@ jobs:
- name: Install npm dependencies
run: npm ci
+ env:
+ CI: true
- name: Run tests
run: npm test