Skip to content

Commit

Permalink
[ci] Run integration test on macOS
Browse files Browse the repository at this point in the history
  • Loading branch information
littleGnAl committed Oct 23, 2023
1 parent bc32423 commit 573f597
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
name: Unit test & integration test

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

on:
pull_request:

Expand Down Expand Up @@ -41,10 +45,18 @@ jobs:
registry-url: "https://npm.pkg.github.com"
# Defaults to the user or organization that owns the workflow file
scope: "@agoraio-extensions"
- name: Cache LLVM and Clang
id: cache-llvm
uses: actions/cache@v3
with:
path: |
./llvm
key: llvm-15.0.7
- name: Install LLVM and Clang
uses: KyleMayes/install-llvm-action@v1
with:
version: "15.0.6"
version: "15.0.7"
cached: ${{ steps.cache-llvm.outputs.cache-hit }}
- name: Run unit test
env:
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down

0 comments on commit 573f597

Please sign in to comment.