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:
test: test:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: 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 - uses: actions/checkout@v2
- run: npm i - run: npm i
- run: npm run lint - run: npm run lint

6
.github/workflows/docs.yml

@ -18,6 +18,12 @@ jobs:
test: test:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: 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 - uses: actions/checkout@v2
- run: | - run: |
npm i npm i

6
.github/workflows/release.yml

@ -22,6 +22,12 @@ jobs:
build: build:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: 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 - uses: actions/checkout@v2
- name: Test - name: Test
run: | run: |

Loading…
Cancel
Save