Skip to content

Commit

Permalink
Merge pull request #98 from yetanalytics/revert-97-revert-96-update-a…
Browse files Browse the repository at this point in the history
…ctions

Revert "Revert "Update GitHub actions""
  • Loading branch information
kelvinqian00 authored Oct 7, 2024
2 parents 97e4e86 + 900b025 commit 214e9a0
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,17 +11,17 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup CD Environment
uses: yetanalytics/actions/setup-env@v0.0.4
uses: yetanalytics/action-setup-env@v2

- name: Extract version
id: version
run: echo version=${GITHUB_REF#refs\/tags\/v} >> $GITHUB_OUTPUT

- name: Build and deploy to Clojars
uses: yetanalytics/action-deploy-clojars@v1.1.0
uses: yetanalytics/action-deploy-clojars@v2
with:
artifact-id: 'lrs'
resource-dirs: '["resources"]'
Expand Down
12 changes: 9 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,20 @@ jobs:
test:
strategy:
matrix:
target: [test-lib-clj, test-lib-cljs, test-conformance-clj-sync, test-conformance-clj-async, test-conformance-cljs, npm-audit]
target:
- test-lib-clj
- test-lib-cljs
- test-conformance-clj-sync
- test-conformance-clj-async
- test-conformance-cljs
- npm-audit
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup CI Environment
uses: yetanalytics/actions/setup-env@v0.0.4
uses: yetanalytics/action-setup-env@v2

- name: Run make target ${{ matrix.target }}
run: make ${{ matrix.target }}

0 comments on commit 214e9a0

Please sign in to comment.