Skip to content

Add bundler audit ignore file #519

Add bundler audit ignore file

Add bundler audit ignore file #519

Workflow file for this run

---
name: 'Lint and test on pull request'
"on":
pull_request:
branches:
- 'master'
paths-ignore:
- 'doc/**'
- '**.md'
jobs:
lint:
if: github.head_ref != 'master'
uses: ./.github/workflows/reusable-lint.yaml
with:
ref: ${{ github.head_ref }}
test:
if: github.head_ref != 'master'
uses: ./.github/workflows/reusable-test.yaml
with:
ref: ${{ github.head_ref }}
...