Skip to content

Commit b5bf790

Browse files
committed
docs: update readme and validation workflow
1 parent edd4932 commit b5bf790

File tree

5 files changed

+66
-2
lines changed

5 files changed

+66
-2
lines changed

.github/workflows/validate.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,6 @@ jobs:
2121
uses: tj-actions/changed-files@v44
2222
- run: yarn --frozen-lockfile
2323
- name: Validate
24-
env:
24+
env:
2525
ALL_CHANGED_FILES: ${{ steps.changed-files.outputs.all_changed_files }}
26-
run: yarn validate ${ALL_CHANGED_FILES}
26+
run: npm run validate ${ALL_CHANGED_FILES}

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
node_modules

README.md

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Deprecation Notice
2+
3+
This repository and its contents have been deprecated. The remaining functionality is limited to management of teams on the Code4rena platform, and will be removed from here in a future update.

package-lock.json

+46
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
{
2+
"name": "code423n4.com",
3+
"version": "1.0.0",
4+
"description": "Deprecated code423n4.com repository",
5+
"main": "index.js",
6+
"scripts": {
7+
"validate": "node bin/validate.js"
8+
},
9+
"author": "",
10+
"license": "ISC",
11+
"dependencies": {
12+
"node-fetch": "^2.6.6"
13+
}
14+
}

0 commit comments

Comments
 (0)