Skip to content

chore: migrate release workflows to npm Trusted Publishers with unified workflow #141

chore: migrate release workflows to npm Trusted Publishers with unified workflow

chore: migrate release workflows to npm Trusted Publishers with unified workflow #141

Workflow file for this run

name: Test
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
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