Skip to content

Commit

Permalink
modified
Browse files Browse the repository at this point in the history
  • Loading branch information
Polybius93 committed Nov 6, 2023
1 parent ed90681 commit 06e741c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 32 deletions.
31 changes: 0 additions & 31 deletions .github/workflows/code-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,15 +44,6 @@ jobs:
- name: Lint commit message
uses: wagoid/commitlint-github-action@v4

lint-deps:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/provision

- name: Lint dependency rules
run: yarn lint:deps

lint-unused-exports:
runs-on: ubuntu-latest
steps:
Expand All @@ -62,15 +53,6 @@ jobs:
- name: Lint unused TypeScript exports
run: yarn lint:unused-exports

locked-versions:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/provision

- name: Check exact versions
uses: ./.github/actions/check-version-lock

typecheck:
runs-on: ubuntu-latest
steps:
Expand All @@ -88,16 +70,3 @@ jobs:

- name: Test
run: yarn test:unit

test-build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/provision

- name: Build
run: yarn build

- name: Package extension
run: sh build-ext.sh
shell: bash
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@
"lint:prettier": "prettier --check \"{src,tests}/**/*.{ts,tsx}\" \"*.{js,json}\"",
"lint:prettier:fix": "prettier --write \"{src,tests}/**/*.{ts,tsx}\" *.js",
"lint:unused-exports": "ts-unused-exports tsconfig.json --ignoreFiles=tests",
"test:unit": "vitest",
"typecheck": "tsc --noEmit",
"test:unit": "vitest run",
"test:integration": "npx playwright test",
"preview": "vite preview"
},
Expand Down

0 comments on commit 06e741c

Please sign in to comment.