Last active
November 12, 2021 02:09
-
-
Save gjuoun/ce68eb4efa33e4fe7adf810e221b6bfc to your computer and use it in GitHub Desktop.
github-actions
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: GitHub Actions Demo | |
on: [push] | |
jobs: | |
Push-to-build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository code | |
uses: actions/checkout@v2 | |
- run: git config --global user.email "[email protected]" | |
- run: git config --global user.name "GitHub Action" | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: '16' | |
cache: 'yarn' | |
- name: Yarn install | |
run: yarn install |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment