Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 6 additions & 4 deletions .github/workflows/codeql_analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,11 @@ on:
push:
branches:
- master
- next
pull_request:
branches:
- master
- next
jobs:
analyze:
name: Analyze
Expand All @@ -16,14 +18,14 @@ jobs:
- name: git checkout
run: git checkout
if: ${{ github.event_name == 'pull_request' }}
- name: prepare CodeQL
uses: github/codeql-action/init@v4
with:
languages: javascript
- name: prepare node
uses: actions/setup-node@v6.1.0
with:
node-version: 24.11.1
- name: prepare CodeQL
uses: github/codeql-action/init@v4
with:
languages: javascript
- name: install
run: npm ci
- name: perform CodeQL analysis
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update_package_lock.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- name: remove lock
run: rm package-lock.json
- name: install playwright
run: npx playwright install
run: npx playwright install --with-deps
- name: test
run: npm install-test
env:
Expand Down
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
[![Styled with prettier](https://img.shields.io/badge/styled_with-prettier-ff69b4.svg)](https://github.com/prettier/prettier)
[![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg)](http://commitizen.github.io/cz-cli/)
[![Known Vulnerabilities](https://snyk.io/test/github/template-tools/template-sync/badge.svg)](https://snyk.io/test/github/template-tools/template-sync)
[![Coverage Status](https://coveralls.io/repos/template-tools/template-sync/badge.svg)](https://coveralls.io/github/template-tools/template-sync)

## template-sync

Expand Down
Loading