Skip to content

chore: update actions versions #13

chore: update actions versions

chore: update actions versions #13

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
- 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 ${{ github.event.pull_request.base.sha }} --to ${{ github.event.pull_request.head.sha }} --verbose
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- 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
- name: Run
uses: ./
id: test
with:
env_file: .github/.env
- name: Echo plugin output
run: |
echo "EXAMPLE: $EXAMPLE"