Skip to content

Merge pull request #78 from hypercerts-org/feat/project_as_collection… #222

Merge pull request #78 from hypercerts-org/feat/project_as_collection…

Merge pull request #78 from hypercerts-org/feat/project_as_collection… #222

Workflow file for this run

name: Test
on:
push:
branches: [main, develop]
pull_request:
branches: [main, develop]
jobs:
test:
runs-on: blacksmith-4vcpu-ubuntu-2404
steps:
- uses: actions/checkout@v6
- name: Setup Node.js
uses: actions/setup-node@v6
with:
node-version: "20"
cache: "npm"
- name: Install dependencies
run: npm ci
- name: Patch lex-cli to fix validation exit code bug
run: |
sed -i 's|// skip|throw e;|g' node_modules/@atproto/lex-cli/dist/util.js
- name: Run checks
run: npm run check