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

Add build file for Github Action #18

Closed
nmarulo opened this issue Oct 13, 2024 · 3 comments · Fixed by #21
Closed

Add build file for Github Action #18

nmarulo opened this issue Oct 13, 2024 · 3 comments · Fixed by #21
Assignees
Labels
Difficulty: Middle hacktoberfest Participando en el Hacktoberfest

Comments

@nmarulo
Copy link
Member

nmarulo commented Oct 13, 2024

Important

Read issue #2 first

Create a file named build.yml in the path: .github/workflows/

The content of the file is as follows:

name: Build Push/PR - Master

on:
  push:
    branches: [ "master" ]
  pull_request:
    branches: [ "master" ]

jobs:
  build:
    runs-on: ubuntu-latest
    steps:
      - name: Checkout repository
        uses: actions/checkout@v4
      - name: Install node modules
        run: npm install --progress=false
      - name: Build project
        run: npm run build
@nmarulo nmarulo added hacktoberfest Participando en el Hacktoberfest Difficulty: Middle labels Oct 13, 2024
@nmarulo nmarulo added this to the hacktoberfest 2024 milestone Oct 13, 2024
@JinnJarBurger
Copy link
Contributor

hello @nmarulo, could you assign me this task? Thanks!

@nmarulo
Copy link
Member Author

nmarulo commented Oct 14, 2024

@JinnJarBurger It's all yours 👍

@JinnJarBurger
Copy link
Contributor

@JinnJarBurger It's all yours 👍

Thanks! on it.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Difficulty: Middle hacktoberfest Participando en el Hacktoberfest
Projects
None yet
2 participants