Skip to content

Commit

Permalink
chore: Disable CI cache
Browse files Browse the repository at this point in the history
  • Loading branch information
Apegurus committed Dec 5, 2021
1 parent d0191e2 commit 007238c
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
name: CI
name: tests

on:
push:
branches:
- master
- main
pull_request:

jobs:
test:
strategy:
matrix:
node: ['12.x', '14.x']
node: ['12.x']
os: [ubuntu-latest]

runs-on: ${{ matrix.os }}
Expand All @@ -24,14 +24,14 @@ jobs:

- run: npm install -g yarn

- id: yarn-cache
run: echo "::set-output name=dir::$(yarn cache dir)"
- uses: actions/cache@v1
with:
path: ${{ steps.yarn-cache.outputs.dir }}
key: ${{ matrix.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ matrix.os }}-yarn-
# - id: yarn-cache
# run: echo "::set-output name=dir::$(yarn cache dir)"
# - uses: actions/cache@v1
# with:
# path: ${{ steps.yarn-cache.outputs.dir }}
# key: ${{ matrix.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
# restore-keys: |
# ${{ matrix.os }}-yarn-
- run: yarn
- run: yarn audit --groups dependencies
- run: yarn test:ci

0 comments on commit 007238c

Please sign in to comment.