Files
codeql-action/justfile
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

18 lines
364 B
Makefile
Raw Normal View History

2025-02-20 11:59:26 +01:00
# Perform all working copy cleanup operations
all: lint sync
# Lint source typescript
lint:
npm run lint -- --fix
2025-02-19 17:13:51 +01:00
# Sync generated files (javascript and PR checks)
2025-02-19 16:51:46 +01:00
sync: build update-pr-checks
2025-02-19 17:13:51 +01:00
# Perform all necessary steps to update the PR checks
2025-02-19 16:51:46 +01:00
update-pr-checks:
pr-checks/sync.sh
2025-02-19 17:13:51 +01:00
# Transpile typescript code into javascript
2025-02-19 16:51:46 +01:00
build:
npm run build