Skip to content

feat: creating branch operation #319

feat: creating branch operation

feat: creating branch operation #319

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: lint
on:
pull_request:
branches: [master]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js
with:
node-version: 22
uses: actions/setup-node@v1
- name: install
run: npm ci
- name: Lint
run: npm run lint