Skip to content
This repository has been archived by the owner on Oct 28, 2023. It is now read-only.

Fix GitHub CI

Fix GitHub CI #2

Workflow file for this run

name: CI
on:
push:
branches: ["main"]
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 18
- name: Install dependencies
run: npm install
- name: Build project
run: |
export REACT_APP_CONTAINERUP_BUILD=$(date -u +%Y%m%d%H%M%S)
export REACT_APP_CONTAINERUP_COMMIT=${GITHUB_SHA::7}
npm run build