0% found this document useful (0 votes)
5 views1 page

GitHub Actions for Job Application Bot

This document outlines a GitHub Actions workflow that triggers on pushes and pull requests to the main branch. It sets up a build job that runs on the latest Ubuntu environment, installs Node.js version 20.x, installs dependencies, and starts the application. The workflow includes steps for checking out the repository and setting up the Node.js environment.

Uploaded by

jocrisserolce
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
5 views1 page

GitHub Actions for Job Application Bot

This document outlines a GitHub Actions workflow that triggers on pushes and pull requests to the main branch. It sets up a build job that runs on the latest Ubuntu environment, installs Node.js version 20.x, installs dependencies, and starts the application. The workflow includes steps for checking out the repository and setting up the Node.js environment.

Uploaded by

jocrisserolce
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd

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 [Link]


uses: actions/setup-node@v3
with:
node-version: ${{ [Link]-version }}

- name: Install dependencies


run: npm install

- name: Start application


run: npm start

You might also like