Skip to content

Elysia-1.0 update, many improvements #63

Elysia-1.0 update, many improvements

Elysia-1.0 update, many improvements #63

Workflow file for this run

# TODO: Experimental feature
name: 'CI -> Test'
on:
workflow_dispatch:
push:
branches:
- dev
paths-ignore:
- '*.md'
- '.*ignore'
pull_request:
branches:
- dev
paths-ignore:
- '*.md'
- '.*ignore'
concurrency:
group: '${{ github.workflow }}-${{ github.ref }}'
cancel-in-progress: true
permissions:
contents: read
jobs:
lint:
name: 'Lint'
runs-on: ubuntu-latest
steps:
- name: 'Harden Runner'
uses: step-security/harden-runner@63c24ba6bd7ba022e95695ff85de572c04a18142 # v2.7.0
with:
egress-policy: audit
- name: 'Checkout'
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- name: 'Setup Bun'
uses: oven-sh/setup-bun@d3603274aca5625baad52ec06108517a089cdd00 # v1.2.0
- name: 'Setup dependencies'
run: bun install --production --frozen-lockfile --ignore-scripts
- name: 'Run lint'
run: bun run lint