Skip to content

Update reload.yml

Update reload.yml #6

Workflow file for this run

name: build
on:
push:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '12'
- run: npm ci
- run: npm install -g typescript
- run: tsc
- run: git config --global user.email "[email protected]"
- run: git config --global user.name "donadev"
- run: git remote set-url --push origin https://donadev:[email protected]/donadev/TicTacToe
- run: git add .
- run: git commit -am "Built" && git push