git-subtree-dir: vendor/git.knownelement.com/ExternalVendorCode/bash3boilerplate git-subtree-split: 2e878ec30f0572ad80f34743b6136536cf7c202f
31 lines
556 B
YAML
31 lines
556 B
YAML
name: b3bp CI
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
pull_request:
|
|
types:
|
|
- opened
|
|
- synchronize
|
|
jobs:
|
|
ci:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
with:
|
|
fetch-depth: 1
|
|
- uses: actions/setup-node@v1
|
|
with:
|
|
node-version: 18.x
|
|
- name: Install
|
|
run: |
|
|
corepack yarn
|
|
- name: Lint
|
|
env:
|
|
SHELLCHECK_SEVERITY: warning
|
|
run: |
|
|
corepack yarn lint
|
|
- name: Test
|
|
run: |
|
|
corepack yarn test
|