Skip to content

Commit ab7a76b

Browse files
authored
Create main.yml
1 parent f4a10aa commit ab7a76b

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

.github/workflows/main.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: CI
2+
3+
on: [push]
4+
5+
jobs:
6+
build:
7+
8+
runs-on: ubuntu-latest
9+
10+
steps:
11+
- uses: actions/checkout@v1
12+
- name: Run a one-line script
13+
run: echo Hello, world!
14+
- name: Run a multi-line script
15+
run: |
16+
echo Add other actions to build,
17+
echo test, and deploy your project.
18+
- name: npm audit action
19+
uses: oke-py/[email protected]
20+
with:
21+
github_token: ${{ secrets.GITHUB_TOKEN }}
22+
issue_assignees: deweydell
23+
issue_labels: bug

0 commit comments

Comments
 (0)