Skip to content

KevinMind is learning GitHub Actions #5

KevinMind is learning GitHub Actions

KevinMind is learning GitHub Actions #5

Workflow file for this run

name: learn-github-actions
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 install && npm run build
env:
CI_DELAY: "10_000"
CI_FAIL: ""