-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3 from robinzzzzzon/task-003
Task 003
- Loading branch information
Showing
3 changed files
with
32 additions
and
30 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
name: First workflow | ||
on: [push, workflow_dispatch] | ||
jobs: | ||
lint: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: getting code | ||
uses: actions/checkout@v4 | ||
- name: installing dependencies | ||
run: npm ci | ||
- name: linting code | ||
run: echo linting code... | ||
build: | ||
needs: lint | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: getting code | ||
uses: actions/checkout@v4 | ||
- name: installing dependencies | ||
run: npm ci | ||
- name: building app | ||
run: echo building app... | ||
test: | ||
needs: build | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: getting code | ||
uses: actions/checkout@v4 | ||
- name: installing dependencies | ||
run: npm ci | ||
- name: testing app | ||
run: echo testing app... |
This file was deleted.
Oops, something went wrong.