fix(build): switch to container for build jobs
Replaces `runs-on` with `container` to utilize a Docker container for node:20-bookworm. This enhances consistency and reproducibility by standardizing the build environment across different runs.
This commit is contained in:
parent
d03828724f
commit
7d23e465e2
1 changed files with 1 additions and 1 deletions
|
@ -7,7 +7,7 @@ on:
|
|||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: node:20-bookworm
|
||||
container: node:20-bookworm
|
||||
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
|
|
Loading…
Reference in a new issue