Skip to content

Update ci configuration and dependencies #18

Update ci configuration and dependencies

Update ci configuration and dependencies #18

Workflow file for this run

name: Build
on:
pull_request:
push:
branches:
- main
- 'releases/*'
jobs:
commit-lint:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎
uses: actions/checkout@v4
with:
fetch-depth: 0
persist-credentials: false
- name: Setup node env 🏗
uses: actions/setup-node@v4
with:
node-version-file: .nvmrc
- name: Install commitlint
run: npm install -g @commitlint/config-conventional @commitlint/cli
- name: Validate current commit (last commit) with commitlint
if: github.event_name == 'push'
run: npx commitlint --from HEAD~1 --to HEAD --verbose
- name: Validate PR commits with commitlint
if: github.event_name == 'pull_request'
run: npx commitlint --from "${BASE_SHA}" --to "${HEAD_SHA}" --verbose
env:
BASE_SHA: ${{ github.event.pull_request.base.sha }}
HEAD_SHA: ${{ github.event.pull_request.head.sha }}
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
persist-credentials: false
- uses: pnpm/action-setup@v2
- uses: actions/setup-node@v4
with:
node-version-file: .nvmrc
- run: pnpm install --frozen-lockfile
- run: pnpm run all
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
persist-credentials: false
- name: Run
uses: ./
id: test
with:
env_file: .github/.env
- name: Echo plugin output
run: |
echo "EXAMPLE: $EXAMPLE"