Skip to content

chore(ci): bump GitHub Actions to Node 24 #51

chore(ci): bump GitHub Actions to Node 24

chore(ci): bump GitHub Actions to Node 24 #51

Workflow file for this run

name: Continuous Integration
on:
pull_request:
jobs:
lint-and-test:
name: "Lint and Test"
runs-on: ubuntu-latest
permissions:
id-token: write
steps:
- name: Harden the runner
uses: step-security/harden-runner@95d9a5deda9de15063e7595e9719c11c38c90ae2 # v2.13.2
with:
egress-policy: block
policy: global-allowed-endpoints-policy
- name: Check out repository code
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
- name: Install Node
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
- name: Install Dependencies
run: yarn install
- name: Run Linter
run: yarn lint
- name: Run Build
run: yarn build
- name: Run Unit Tests
run: yarn test
scan:
needs: lint-and-test
uses: circlefin/circle-public-github-workflows/.github/workflows/pr-scan.yaml@v1