Skip to content
This repository was archived by the owner on Mar 13, 2026. It is now read-only.

Commit ab7a76b

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

1 file changed

Lines changed: 23 additions & 0 deletions

File tree

.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/npm-audit-action@v1.1.0
20+
with:
21+
github_token: ${{ secrets.GITHUB_TOKEN }}
22+
issue_assignees: deweydell
23+
issue_labels: bug

0 commit comments

Comments
 (0)