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.* 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