Skip to content

Commit

Permalink
Create my-first-workflow-1.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
ahmedbham authored Oct 30, 2024
1 parent 8258aa1 commit f4c7848
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/my-first-workflow-1.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
on: [push, pull_request]

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2

- name: Use Node.js
uses: actions/setup-node@v2
with:
node-version: '14'

- run: npm install
- run: npm run build --if-present
- run: npm test



0 comments on commit f4c7848

Please sign in to comment.