Skip to content

Update hello_world.yaml #3

Update hello_world.yaml

Update hello_world.yaml #3

Workflow file for this run

name: Hello World
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Use Node.js 16.x
uses: actions/setup-node@v3
with:
node-version: '16.x'
- name: Check out repository
uses: actions/checkout@v2
- name: Run Hello World script
run: echo "Hello, World!"