mirror of
https://github.com/actions/setup-node
synced 2025-04-07 01:15:51 +00:00
13 lines
258 B
YAML
13 lines
258 B
YAML
name: Node Version
|
|
on:
|
|
push:
|
|
branches: [ 1107-test ]
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Use Node.js 18.x
|
|
uses: actions/setup-node@v4
|
|
with:
|
|
node-version: '18.x'
|