Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

remove storing artifacts update CI #1007

Merged
merged 21 commits into from
Sep 11, 2024
Merged
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
12db97b
chore: update release trigger for CI
yohanelly95 Sep 5, 2024
8d01bfb
chore: create github release when tag is pushed
yohanelly95 Sep 5, 2024
27345ef
chore: secret to write github release
yohanelly95 Sep 5, 2024
5317027
chore: update node version
yohanelly95 Sep 5, 2024
74aa40d
chore: run CI on push or pull request includes test,lint,coverage,sli…
yohanelly95 Sep 5, 2024
929fa3d
chore: run CI on push to main and develop branches only
yohanelly95 Sep 5, 2024
5f0dc7c
chore: run CI on push to release* branches also
yohanelly95 Sep 5, 2024
0c71669
chore: fix release ci and add update common ci
yohanelly95 Sep 9, 2024
7d2da73
chore: fix release ci and add update common ci
yohanelly95 Sep 9, 2024
8ec80fd
chore: undo package json change
yohanelly95 Sep 9, 2024
00ffdd9
chore: node 20
yohanelly95 Sep 9, 2024
3b89f22
chore: test CI with node 20
yohanelly95 Sep 9, 2024
81e7889
chore: test CI with node 16
yohanelly95 Sep 9, 2024
638d884
chore: update test
yohanelly95 Sep 9, 2024
5d88aa0
chore: update to hardhat from truffle
yohanelly95 Sep 9, 2024
05487ee
chore: fix lint and change prettier to warning
yohanelly95 Sep 10, 2024
42c5032
chore: revert rely on node 20 fallback on git action end
yohanelly95 Sep 10, 2024
ab29e05
chore: keep prettier error
yohanelly95 Sep 10, 2024
3463075
fix: skale network hardhat config changed to frame url
yohanelly95 Sep 11, 2024
7132c50
fix: remove storing atrifacts not required and v2 deprecated
yohanelly95 Sep 11, 2024
af68cb7
chore: conflicts resolved
yohanelly95 Sep 11, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 0 additions & 20 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,11 +39,6 @@ jobs:
- name: Run tests
run: |
CI=true npm run test
- name: Store artifacts
uses: actions/upload-artifact@v2
with:
name: test
path: test

scenarios:
runs-on: ubuntu-latest
Expand All @@ -55,11 +50,6 @@ jobs:
- name: Run scenarios
run: |
CI=true npm run scenarios
- name: Store artifacts
uses: actions/upload-artifact@v2
with:
name: scenarios
path: scenarios

lint:
runs-on: ubuntu-latest
Expand All @@ -70,11 +60,6 @@ jobs:
action: retrieve
- name: Run Lint
run: npm run lint
- name: Store artifacts
uses: actions/upload-artifact@v2
with:
name: lint
path: lint

coverage:
runs-on: ubuntu-latest
Expand All @@ -89,11 +74,6 @@ jobs:
uses: coverallsapp/github-action@v2
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
- name: Store artifacts
uses: actions/upload-artifact@v2
with:
name: coverage
path: coverage

slither:
runs-on: ubuntu-latest
Expand Down
Loading