Skip to content

feat: stuff that dosent work #2

feat: stuff that dosent work

feat: stuff that dosent work #2

Workflow file for this run

name: Build
on:
push:
branches:
- main
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
env:
RETENTION_DAYS: 1
timeout-minutes: 20
strategy:
matrix:
node-version: [22.x]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
steps:
- uses: actions/checkout@v3
- name: Set up Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm i
- name: Build
run: npm run build
- name: Archive production artifacts
uses: actions/upload-artifact@v4
with:
name: build
path: dist/factoriotextplategen/
retention-days: ${{ env.RETENTION_DAYS }}