Browse Source

chore: Synced local '.github/' with remote 'sync-files/js/.github/' (#314)

main
Justin Poehnelt 3 years ago committed by GitHub
parent
commit
0b493de787
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 6
      .github/workflows/ci.yml
  2. 6
      .github/workflows/docs.yml
  3. 6
      .github/workflows/release.yml

6
.github/workflows/ci.yml

@ -18,6 +18,12 @@ jobs: @@ -18,6 +18,12 @@ jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/cache@v2
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- uses: actions/checkout@v2
- run: npm i
- run: npm run lint

6
.github/workflows/docs.yml

@ -18,6 +18,12 @@ jobs: @@ -18,6 +18,12 @@ jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/cache@v2
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- uses: actions/checkout@v2
- run: |
npm i

6
.github/workflows/release.yml

@ -22,6 +22,12 @@ jobs: @@ -22,6 +22,12 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/cache@v2
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- uses: actions/checkout@v2
- name: Test
run: |

Loading…
Cancel
Save