Skip to content

Explode the Bomb

Explode the Bomb #4

Workflow file for this run

name: Explode the Bomb
on:
workflow_dispatch: # Este evento aciona o workflow manualmente
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: '14'
- name: Install dependencies
run: yarn install
- name: Run yarn start
run: yarn start