diff --git a/.github/workflows/cicd.yml b/.github/workflows/cicd.yml
new file mode 100644
index 0000000000..178c5ed59a
--- /dev/null
+++ b/.github/workflows/cicd.yml
@@ -0,0 +1,16 @@
+name: CI/CD
+
+on: [push]
+
+jobs:
+ build:
+ runs-on: ubuntu-latest
+
+ steps:
+ - uses: actions/checkout@v2
+ - name: Set up Node.js
+ uses: actions/setup-node@v2
+ with:
+ node-version: '14'
+ - run: npm install
+ - run: npm test
\ No newline at end of file
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
new file mode 100644
index 0000000000..8a371cf4a2
--- /dev/null
+++ b/.github/workflows/main.yml
@@ -0,0 +1,11 @@
+name: CI
+
+on: [push]
+
+jobs:
+ build:
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v2
+ - name: Run a one-line script
+ run: echo Hello, world!
\ No newline at end of file
diff --git a/.gitignore b/.gitignore
index f903ab6066..713d5006da 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,7 +1,2 @@
-.vscode/*
-!.vscode/extensions.json
node_modules/
-/test-results/
-/playwright-report/
-/blob-report/
-/playwright/.cache/
+.env
diff --git a/README.md b/README.md
index a9049b4779..3f6fc071e9 100644
--- a/README.md
+++ b/README.md
@@ -1,5 +1,5 @@
# Full Stack FastAPI Template
-
+learning .