Skip to content
This repository has been archived by the owner on Jul 15, 2024. It is now read-only.

Fix task deletion for branch delete command #146

Fix task deletion for branch delete command

Fix task deletion for branch delete command #146

Workflow file for this run

name: CI
on:
push:
branches: [master]
pull_request:
types: [opened, synchronize, reopened]
jobs:
jest:
name: Run Jest tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js 18.x
uses: actions/setup-node@v2
with:
node-version: 18.x
cache: "yarn"
- name: Install dependencies
run: yarn
- name: Run tests
run: yarn test
typescript:
name: Run TypeScript checks
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js 18.x
uses: actions/setup-node@v2
with:
node-version: 18.x
cache: "yarn"
- name: Install dependencies
run: yarn
- name: Run TypeScript check
run: yarn tsc:check
lint:
name: Run ESLint checks
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js 18.x
uses: actions/setup-node@v2
with:
node-version: 18.x
cache: "yarn"
- name: Install dependencies
run: yarn
- name: Run ESLint check
run: yarn lint