Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Task 003 #3

Merged
merged 8 commits into from
Nov 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.