Skip to content

Commit e9bd603

Browse files
authored
Create on-push.yml
1 parent f904558 commit e9bd603

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

.github/workflows/on-push.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
name: on-push
2+
run-name: ${{ github.actor }} has pushed a commit
3+
on: [push]
4+
jobs:
5+
build-this-commit:
6+
runs-on: ubuntu-latest
7+
steps:
8+
- uses: actions/checkout@v4
9+
- uses: actions/setup-node@v4
10+
with:
11+
node-version: 18
12+
- run: npm install
13+
- run: npm build
14+
- run: npm test

0 commit comments

Comments
 (0)