From 4478c8c69e3f1a414e5d172e63e88e6e437507d6 Mon Sep 17 00:00:00 2001 From: Yen-star <1akekoyenney@gmail.com> Date: Tue, 6 May 2025 13:45:27 +0300 Subject: [PATCH 1/2] Create main.yml --- .github/workflows/main.yml | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 00000000..db826b17 --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,37 @@ +# Hi there, I'm Yen-star! ๐Ÿ‘‹ + +Welcome to my GitHub profile! + +I'm passionate about technology, learning new skills, and building cool projects. Whether it's writing clean code, experimenting with new tools, or solving real-world problemsโ€”I'm always up for a challenge. + +--- + +## ๐Ÿš€ Tech Stack + +![Languages](https://skillicons.dev/icons?i=html,css,js,react,python,java,github,git) + +--- + +## ๐ŸŒฑ Currently Learning + +- Full-stack development +- DevOps basics +- Machine learning fundamentals + +--- + +## ๐Ÿ“Š GitHub Stats + +![Yen-star's GitHub stats](https://github-readme-stats.vercel.app/api?username=Yen-star&show_icons=true&theme=radical) +![Top Languages](https://github-readme-stats.vercel.app/api/top-langs/?username=Yen-star&layout=compact&theme=radical) + +--- + +## ๐Ÿ“ซ Connect With Me + +- GitHub: [Yen-star](https://github.com/Yen-star) +- Portfolio: [yen-star.github.io](https://yen-star.github.io) + +--- + +*Thanks for stopping by! Feel free to explore my repositories and projects.* From d64ae35cbd5e866e5a19c59ad66d6240554783de Mon Sep 17 00:00:00 2001 From: Yen-star <1akekoyenney@gmail.com> Date: Tue, 6 May 2025 13:49:33 +0300 Subject: [PATCH 2/2] Create webpack.yml --- .github/workflows/webpack.yml | 64 +++++++++++++++++++++++++++++++++++ 1 file changed, 64 insertions(+) create mode 100644 .github/workflows/webpack.yml diff --git a/.github/workflows/webpack.yml b/.github/workflows/webpack.yml new file mode 100644 index 00000000..eed60076 --- /dev/null +++ b/.github/workflows/webpack.yml @@ -0,0 +1,64 @@ +name# Hi there, I'm Yen-star! ๐Ÿ‘‹ + +Welcome to my GitHub profile! + +I'm passionate about technology, learning new skills, and building cool projects. Whether it's writing clean code, experimenting with new tools, or solving real-world problemsโ€”I'm always up for a challenge. + +--- + +## ๐Ÿš€ Tech Stack + +![Languages](https://skillicons.dev/icons?i=html,css,js,react,python,java,github,git) + +--- + +## ๐ŸŒฑ Currently Learning + +- Full-stack development +- DevOps basics +- Machine learning fundamentals + +--- + +## ๐Ÿ“Š GitHub Stats + +![Yen-star's GitHub stats](https://github-readme-stats.vercel.app/api?username=Yen-star&show_icons=true&theme=radical) +![Top Languages](https://github-readme-stats.vercel.app/api/top-langs/?username=Yen-star&layout=compact&theme=radical) + +--- + +## ๐Ÿ“ซ Connect With Me + +- GitHub: [Yen-star](https://github.com/Yen-star) +- Portfolio: [yen-star.github.io](https://yen-star.github.io) + +--- + +*Thanks for stopping by! Feel free to explore my repositories and projects.*: NodeJS with Webpack + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + +jobs: + build: + runs-on: ubuntu-latest + + strategy: + matrix: + node-version: [18.x, 20.x, 22.x] + + steps: + - uses: actions/checkout@v4 + + - name: Use Node.js ${{ matrix.node-version }} + uses: actions/setup-node@v4 + with: + node-version: ${{ matrix.node-version }} + + - name: Build + run: | + npm install + npx webpack