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

on: push: branches: main pull_request: branches: main jobs: build: runs-on: ubuntu-latest strategy: matrix: node-version: [20.x] steps: name: Checkout repository uses: actions/checkout@v3 name: Set up Node.js uses: actions/setup-node@v3 with: node-version: ${{ matrix.node-version }} name: Install dependencies run: npm install name: Start application run: npm start #6

Open
wants to merge 4 commits into
base: main
Choose a base branch
from

Conversation

HARERSUDDA
Copy link

No description provided.

@HARERSUDDA
Copy link
Author

on:
push:
branches:
main
pull_request:
branches:
main

jobs:
build:

runs-on: ubuntu-latest

strategy:
  matrix:
    node-version: [20.x]

steps:

name: Checkout repository
uses: actions/checkout@v3

name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}

name: Install dependencies
run: npm install

name: Start application
run: npm start

1 similar comment
@HARERSUDDA
Copy link
Author

on:
push:
branches:
main
pull_request:
branches:
main

jobs:
build:

runs-on: ubuntu-latest

strategy:
  matrix:
    node-version: [20.x]

steps:

name: Checkout repository
uses: actions/checkout@v3

name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}

name: Install dependencies
run: npm install

name: Start application
run: npm start

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant