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
3 changes: 0 additions & 3 deletions .env.example

This file was deleted.

39 changes: 16 additions & 23 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,29 +1,22 @@
name: CI

on:
push:
branches: [main]
pull_request:
branches: [main]

on: [push, pull_request]
jobs:
test:
typescript:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18, 20, 22]

defaults: { run: { working-directory: typescript } }
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
with:
version: 9
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: pnpm

- run: pnpm install --frozen-lockfile
- run: pnpm lint
- run: pnpm test
- run: pnpm build
with: { node-version: 20 }
- run: npm install
- run: npm run typecheck
- run: npm run build
python:
runs-on: ubuntu-latest
defaults: { run: { working-directory: python } }
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with: { python-version: '3.11' }
- run: pip install httpx
- run: python -c "import ast,glob; [ast.parse(open(f).read()) for f in glob.glob('hashlock/*.py')]; print('syntax ok')"
8 changes: 6 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
node_modules/
dist/
*.tsbuildinfo
__pycache__/
*.egg-info/
build/
.venv/
.env
coverage/
*.tgz
.DS_Store
208 changes: 0 additions & 208 deletions CHANGELOG.md

This file was deleted.

Loading
Loading