Skip to content

KevinMind is learning GitHub Actions #16

KevinMind is learning GitHub Actions

KevinMind is learning GitHub Actions #16

Workflow file for this run

name: ci build
run-name: ${{ github.actor }} is learning GitHub Actions
on:
pull_request:
merge_group:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: '18'
- name: Install dependencies
run: npm i
- name: Build
run: npm run build
env:
CI_DELAY: "20000"
CI_FAIL: ""