Skip to content

Commit

Permalink
change workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
Supriya S committed May 26, 2021
1 parent 7bdeced commit e2303c1
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 49 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,18 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Cache node modules
uses: actions/cache@v2
env:
cache-name: cache-node-modules
with:
# npm cache files are stored in `~/.npm` on Linux/macOS
path: ~/.npm
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-build-${{ env.cache-name }}-
${{ runner.os }}-build-
${{ runner.os }}-
- name: Install
run: yarn --no-progress --non-interactive --no-lockfile
- name: Build
Expand Down
36 changes: 0 additions & 36 deletions .github/workflows/integration.yml

This file was deleted.

13 changes: 0 additions & 13 deletions .github/workflows/lint.yml

This file was deleted.

0 comments on commit e2303c1

Please sign in to comment.