Compare commits

..

2 commits

Author SHA1 Message Date
6d49de0421
Save CI build
Some checks failed
Audit / Audit (push) Failing after 9s
Push / Lint (push) Failing after 8s
Push / Build (push) Failing after 8s
2025-02-23 07:43:22 -05:00
5ad0c98252
Switch to new runner image 2025-02-23 07:38:10 -05:00
2 changed files with 8 additions and 3 deletions

View file

@ -10,7 +10,7 @@ name: Audit
jobs: jobs:
build: build:
name: Audit name: Audit
runs-on: docker runs-on: ubuntu-22.04
steps: steps:
- name: Checkout - name: Checkout
uses: actions/checkout@v4 uses: actions/checkout@v4

View file

@ -6,7 +6,7 @@ name: Push
jobs: jobs:
lint: lint:
name: Lint name: Lint
runs-on: docker runs-on: ubuntu-22.04
steps: steps:
- name: Checkout - name: Checkout
uses: actions/checkout@v4 uses: actions/checkout@v4
@ -23,7 +23,7 @@ jobs:
build: build:
name: Build name: Build
runs-on: docker runs-on: ubuntu-22.04
steps: steps:
- name: Checkout - name: Checkout
uses: actions/checkout@v4 uses: actions/checkout@v4
@ -33,3 +33,8 @@ jobs:
run: yarn install run: yarn install
- name: Build - name: Build
run: yarn build run: yarn build
- name: Save build
uses: forgejo/upload-artifact@v4
with:
name: webroot
path: dist/prod