Skip to content

Commit

Permalink
Merge pull request #3 from robinzzzzzon/task-003
Browse files Browse the repository at this point in the history
Task 003
  • Loading branch information
robinzzzzzon authored Nov 17, 2024
2 parents 6200bef + 0afa8f8 commit 9362dc3
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 30 deletions.
1 change: 0 additions & 1 deletion .github/workflows/main.yml

This file was deleted.

32 changes: 32 additions & 0 deletions .github/workflows/test.yml
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...
29 changes: 0 additions & 29 deletions github/actions/test.yml

This file was deleted.

0 comments on commit 9362dc3

Please sign in to comment.