Skip to content

Commit

Permalink
Created first workflow and first job
Browse files Browse the repository at this point in the history
  • Loading branch information
s-r-hama committed Jan 4, 2024
1 parent 2294c64 commit 6d40928
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/workflows.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: test project
on: push
jobs:
test:
runs_on: ubuntu_latest
steps:
- name: Get code
uses: actions/checkout@v4
- name: install NodeJs
uses: actions/setup-node@v4
with:
node-version: 18
- name: install dependencies
run: npm ci
- name: Run tests
run: npm test



0 comments on commit 6d40928

Please sign in to comment.