fix: throw error for too long tar entry (#968) #2224
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Check | |
on: | |
push: | |
branches: | |
- 'master' | |
pull_request: | |
branches: | |
- '**' | |
jobs: | |
check: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [16.x] | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v1 | |
with: | |
node-version: ${{ matrix.node-version }} | |
## Try getting the node modules from cache, if failed npm ci | |
- uses: actions/cache@v2 | |
id: cache-npm | |
with: | |
path: node_modules | |
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} | |
restore-keys: | | |
${{ runner.OS }}-node-${{ env.cache-name }}- | |
${{ runner.OS }}-node- | |
${{ runner.OS }}- | |
- name: Install npm deps | |
if: steps.cache-npm.outputs.cache-hit != 'true' | |
run: npm ci | |
- name: Commit linting | |
uses: wagoid/commitlint-github-action@v2 | |
- name: Code linting | |
run: npm run lint:check | |
env: | |
CI: true | |
- name: Dependency check | |
run: npm run depcheck | |
- name: Check typings | |
run: npm run check:types | |
- name: Check build | |
run: npm run build | |
- name: Trigger API Docs update PR | |
uses: peter-evans/repository-dispatch@v1 | |
if: github.ref == 'refs/heads/master' | |
with: | |
token: ${{ secrets.REPO_GHA_PAT }} | |
repository: ethersphere/bee-js-docs | |
event-type: trigger-api-docs-pr |