Skip to content

fix(merge): allow merges of new folders with the same name #55

fix(merge): allow merges of new folders with the same name

fix(merge): allow merges of new folders with the same name #55

Workflow file for this run

name: Pull Request
on:
pull_request:
branches: [ "main" ]
jobs:
release:
runs-on: macos-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: '20.x'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build
- name: Test (Node.js)
run: npm run test
- name: Test (Browsers)
run: npm run test:browsers
- name: 'Publish coverage reports'
uses: codecov/codecov-action@v3
- name: Generate documentation
run: npm run gen-doc