Skip to content

Commit

Permalink
Parallelize integration tests workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
kossnocorp committed Dec 4, 2023
1 parent fbbeeb4 commit 5508833
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 4 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/attw_tests.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Are the types wrong?

on: [push, pull_request]

jobs:
tests:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
cache: "npm"
- run: npm install

- run: ./scripts/test/types.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Integration tests
name: Smoke tests

on: [push, pull_request]

Expand All @@ -16,6 +16,3 @@ jobs:

- name: Smoke tests
run: ./scripts/test/smoke.sh

- name: Types tests
run: ./scripts/test/types.sh

0 comments on commit 5508833

Please sign in to comment.