Skip to content

build(deps): bump actions/upload-artifact from 5 to 6 #339

build(deps): bump actions/upload-artifact from 5 to 6

build(deps): bump actions/upload-artifact from 5 to 6 #339

Workflow file for this run

name: CI
on:
pull_request:
jobs:
pre-test:
name: Pre-Tests
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
- name: ShellCheck
if: ${{ always() }}
uses: reviewdog/action-shellcheck@v1
with:
reporter: github-pr-review
fail_on_error: true
eslint:
name: ESLint
needs: [pre-test]
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Lint
uses: reviewdog/action-eslint@v1
with:
reporter: github-pr-review
workdir: src/
codespell:
name: Codespell
needs: [pre-test]
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Spell Check
uses: codespell-project/actions-codespell@master
with:
skip: .git,./tests,./po
commitlint:
name: Commitlint
needs: [pre-test]
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Lint
uses: wagoid/commitlint-github-action@v6
reuse:
name: REUSE Compliance
needs: [pre-test]
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Lint
uses: fsfe/reuse-action@v6
with:
args: lint
translations:
name: Translations
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Check
run: |
./tests/potfiles-check.sh
test-build:
name: Test Build
needs: [pre-test]
runs-on: ubuntu-latest
container:
image: ghcr.io/${{ github.repository }}:${{ github.base_ref }}
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Build
env:
DESTDIR: ${{ github.workspace }}
WORKSPACE: ${{ github.workspace }}
run: |
./build-aux/misc/ego.sh
- name: Upload
uses: actions/upload-artifact@v6
with:
name: valent@andyholmes.ca
path: ${{ github.workspace }}/valent@andyholmes.ca/*