aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/js.yml
diff options
context:
space:
mode:
authorXhmikosR <[email protected]>2021-08-18 07:29:56 +0300
committerGitHub <[email protected]>2021-08-18 07:29:56 +0300
commit433a148c9e61aa942801fd8101dfa5c4045fdaed (patch)
treef41db59fd06019169df5ea0338213ec0e298f226 /.github/workflows/js.yml
parentb97cfa163b5098db70e03b27c91fca5dde9c267e (diff)
parent18b3e1ac71f73d006756684a285c5a818e2d1454 (diff)
downloadbootstrap-global-focus-vars.tar.xz
bootstrap-global-focus-vars.zip
Merge branch 'main' into global-focus-varsglobal-focus-vars
Diffstat (limited to '.github/workflows/js.yml')
-rw-r--r--.github/workflows/js.yml13
1 files changed, 3 insertions, 10 deletions
diff --git a/.github/workflows/js.yml b/.github/workflows/js.yml
index 0a4fe259a..266b1576d 100644
--- a/.github/workflows/js.yml
+++ b/.github/workflows/js.yml
@@ -17,7 +17,7 @@ jobs:
strategy:
fail-fast: false
matrix:
- node: [10, 12, 14]
+ node: [12, 14, 16]
steps:
- name: Clone repository
@@ -27,14 +27,7 @@ jobs:
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node }}
-
- - name: Set up npm cache
- uses: actions/cache@v2
- with:
- path: ~/.npm
- key: ${{ runner.os }}-node-${{ matrix.node }}-${{ hashFiles('package.json') }}-${{ hashFiles('package-lock.json') }}
- restore-keys: |
- ${{ runner.os }}-node-${{ matrix.node }}-${{ hashFiles('package.json') }}-${{ hashFiles('package-lock.json') }}
+ cache: npm
- name: Install npm dependencies
run: npm ci
@@ -46,7 +39,7 @@ jobs:
run: npm run js-test
- name: Run Coveralls
- uses: coverallsapp/[email protected]
+ uses: coverallsapp/[email protected]
if: matrix.node == 14
with:
github-token: "${{ secrets.GITHUB_TOKEN }}"