diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index df80d941..ef298985 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -3,11 +3,6 @@ name: Release pipeline on: push: branches: - - main - - 'feature/**' - - 'feat/**' - - 'hotfix/**' - - 'ACT-**' concurrency: group: ${{ github.ref }} diff --git a/package.json b/package.json index 888e9496..647fb9ea 100644 --- a/package.json +++ b/package.json @@ -32,8 +32,8 @@ "start": "react-scripts start", "build": "react-scripts build", "test": "CI=true react-scripts test", - "lint": "eslint .", - "lint:fix": "eslint --fix", + "lint": "eslint \"src/**/*.{ts,js}\"", + "lint:fix": "eslint \"src/**/*.{ts,js}\" --fix", "format": "prettier --write './**/*.{js,jsx,ts,tsx,css,json}' --config ./.prettierrc", "build-package": "rollup -c", "storybook": "storybook dev -p 6006",