bash3boilerplate/.github/workflows/ci.yml

33 lines
624 B
YAML
Raw Normal View History

name: b3bp CI
on:
push:
branches:
- main
pull_request:
types:
- opened
- synchronize
jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 1
- uses: actions/setup-node@master
with:
node-version: 18.x
2023-08-29 10:04:33 +00:00
- name: Install
run: |
corepack yarn
2023-08-29 10:25:08 +00:00
- name: Lint
run: |
corepack yarn lint
- name: Test
run: |
corepack yarn test
- name: Website Build
if: github.ref == 'refs/heads/main'
run: |
2023-08-29 10:25:08 +00:00
cp README.md docs/