Skip to content

Commit

Permalink
๐Ÿ’พ Saved.
Browse files Browse the repository at this point in the history
  • Loading branch information
k33g committed Feb 20, 2024
1 parent ed32345 commit f20598e
Showing 1 changed file with 11 additions and 9 deletions.
20 changes: 11 additions & 9 deletions .github/workflows/github-actions-install.yml
Original file line number Diff line number Diff line change
@@ -1,22 +1,24 @@
name: GitHub Actions Install
run-name: ${{ github.actor }} GitHub Actions ๐Ÿ“ฆ
name: Runtimes Install
run-name: Runtimes Install ๐Ÿ“ฆ
on: [push]
jobs:
Explore-GitHub-Actions:
Install-Go-And-NodeJS:
runs-on: ubuntu-latest
env:
GO_ARCH: "amd64"
GO_VERSION: "1.21.3"
steps:
- name: Setup Go 1.21.x
- name: Setup Go 1.21.3
uses: actions/setup-go@v4
with:
# Semantic version range syntax or exact version of Go
go-version: '1.21.3'
- name: Setup NodeJS 21.1.0
uses: actions/setup-node@v3
with:
node-version: '21.1.0'
- run: go version
Go-Deeper-With-GitHub-Actions:
- run: node --version
Some-Checks:
runs-on: ubuntu-latest
needs: Explore-GitHub-Actions
steps:
- run: echo "๐Ÿ‘‹ hello world ๐ŸŒ"
- run: go version
- run: node --version

0 comments on commit f20598e

Please sign in to comment.