This repository was archived by the owner on Mar 2, 2025. It is now read-only.
alert when getting attacked #529
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: Setup node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- name: Setup npm | |
run: npm install | |
- name: Build | |
run: npm run build-prod | |
- uses: actions/upload-artifact@v4 | |
with: | |
path: out/index.html | |
retention-days: 1 |