Skip to content

Bump step-security/harden-runner from 2.15.0 to 2.15.1 (#83) #157

Bump step-security/harden-runner from 2.15.0 to 2.15.1 (#83)

Bump step-security/harden-runner from 2.15.0 to 2.15.1 (#83) #157

Workflow file for this run

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:
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Harden Runner
uses: step-security/harden-runner@58077d3c7e43986b6b15fba718e8ea69e387dfcc # v2.15.1
with:
egress-policy: audit
- name: Setup Bun
uses: oven-sh/setup-bun@ecf28ddc73e819eb6fa29df6b34ef8921c743461 # v2.1.3
- name: Checkout
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
persist-credentials: false
- name: Setup development dependencies
run: bun install --frozen-lockfile
- name: Run test
run: bun run test
# TODO: Track IINFRA-501
# - name: Upload coverage
# uses: codacy/codacy-coverage-reporter-action@89d6c85cfafaec52c72b6c5e8b2878d33104c699 # v1.3.0
# with:
# project-token: ${{ secrets.CODACY_PROJECT_TOKEN }}
# coverage-reports: coverage/lcov.*