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

creat branch dev #1

Open
wants to merge 8 commits into
base: main
Choose a base branch
from
Open
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
Binary file added .DS_Store

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Этот файл должен быть в gitignore если вы его случайно коммитите и он не влияет на проект

Binary file not shown.
25 changes: 25 additions & 0 deletions .github/workflows/lint.yml

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

файл workflow называется lint, при этом тут происходит build. Самого запуска lint не вижу

Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Build

on:
push:
branches:
- dev

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v2

- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '14'

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Устаревшая версия nodejs

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.


- name: Install dependencies
run: yarn install

- name: Build
run: yarn build
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
/node_modules
/dist
package-lock.json
Copy link

@stepancar stepancar Jan 24, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

package-lock.json не должен быть игнорирован,
Нужно вспомнить про назначение этого файла.

1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
https://nekruz03.github.io/
Loading
Loading