Skip to content

Commit

Permalink
Run tests against v9-integration and add attw check
Browse files Browse the repository at this point in the history
  • Loading branch information
markerikson committed Jun 21, 2023
1 parent bf61e59 commit 07dc6ef
Showing 1 changed file with 23 additions and 2 deletions.
25 changes: 23 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: Tests

on:
push:
branches: [master, typescript-port]
branches: [master, v9.0-integration]
pull_request:
branches: [master, typescript-port]
branches: [master, v9.0-integration]
workflow_dispatch:

jobs:
Expand Down Expand Up @@ -73,6 +73,27 @@ jobs:
yarn tsc --version
yarn type-tests
are-the-types-wrong:
name: Check package config with are-the-types-wrong

needs: [build]
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node: ['16.x']
steps:
- name: Checkout repo
uses: actions/checkout@v3

- uses: actions/download-artifact@v3
with:
name: package
path: .

- name: Run are-the-types-wrong
run: npx @arethetypeswrong/cli ./package.tgz

test-published-artifact-local:
name: Test Published Artifact (Local) ${{ matrix.example }}

Expand Down

0 comments on commit 07dc6ef

Please sign in to comment.