bash3boilerplate/.github/workflows/ci.yml
Kevin van Zonneveld 1fb7cc4337
Update ci.yml
2023-08-29 12:29:27 +02:00

29 lines
504 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
run: |
corepack yarn lint
- name: Test
run: |
corepack yarn test