Skip to content

Fix name collisions #113

Fix name collisions

Fix name collisions #113

Workflow file for this run

name: pull-request-validation
on:
pull_request:
branches:
- '*'
jobs:
lint:
name: Lint Commit Messages
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install Node.js and NPM
uses: actions/setup-node@v4
with:
node-version: '14'
- name: Install commitlint
run: npm install -g @commitlint/cli@11.0.0 @commitlint/config-conventional@11.0.0
- name: Run commitlint
run: commitlint -x @commitlint/config-conventional --from=${{ github.event.pull_request.base.sha }} --to=${{ github.event.pull_request.head.sha }}
test:
name: Build Package and Run Tests
runs-on: macOS-13
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Swift
uses: swift-actions/setup-swift@v1
with:
swift-version: '5.9'
- name: Run Tests
run: |
Scripts/test.sh