Former-commit-id: 7e79fca9728a249caa8fc89842375ea6eb4ea719 Former-commit-id: 699840f3981a429bbc2b0fc7b57262a135c81166 Former-commit-id: 78685b8d3d7315c0f01e412eab07e3ea1d3fe2c1 Former-commit-id: 38c0186de0d17faf245e393a729aa7e851632b03 [formerly e08e81182b1d5a4d91ca2c01a533865e5eaaa60a] Former-commit-id: 4254998839eadda3ee06c16f76edf1fb78da23d5 Former-commit-id: 9d375ab47da71049eeae9f595f57c3baef10fa0b Former-commit-id: 75e9939686b7e31e0a1d76cb1fbd3a60e20ad19c Former-commit-id: 9f6bcf8599abcefd6115ceb2824a30586410e08d Former-commit-id: b02ba521e34a0a046212c34f5344e2f00147b56c
24 lines
356 B
YAML
24 lines
356 B
YAML
name: Deploy
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
|
|
jobs:
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
- uses: actions/setup-node@v1
|
|
with:
|
|
node-version: '10.x'
|
|
- name: Run a one-line script
|
|
run: echo Hello, world!
|
|
- name: Run a multi-line script
|
|
run: |
|
|
node
|
|
1+1
|