Skip to content

Commit

Permalink
Update ci
Browse files Browse the repository at this point in the history
  • Loading branch information
dsherret committed Mar 25, 2023
1 parent 77dfc36 commit 4c20354
Showing 1 changed file with 5 additions and 7 deletions.
12 changes: 5 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,21 +10,19 @@ jobs:
- uses: actions/checkout@v2
- uses: denoland/setup-deno@v1
- uses: actions/setup-node@v2
with:
node-version: '16'
check-latest: true
- name: Build
run: |
npm ci
npm run bootstrap
npm run build
npx lerna run ensure-no-project-compile-errors
npm run --workspaces build
npm run --workspaces --if-present ensure-no-project-compile-errors
- name: Test
run: |
npx lerna run test:ci
npx lerna run test:ts-versions
npm run --workspaces --if-present test:ci
npm run --workspaces --if-present test:ts-versions
- name: Deno Test
run: deno test --allow-read deno
- name: Code Verification
run: |
npx lerna run code-verification
npm run --workspaces --if-present code-verification

0 comments on commit 4c20354

Please sign in to comment.