mirror of
https://github.com/Ocelot-Social-Community/ocelot.social.git
synced 2025-12-13 07:46:08 +00:00
Bumps [actions/setup-node](https://github.com/actions/setup-node) from 1c7b2db92075f828bee89d7e19d33a911d15e7b3 to 97ca147735c170fb35096b39ef17a0fc5d9270ac.
- [Release notes](https://github.com/actions/setup-node/releases)
- [Commits](1c7b2db920...97ca147735)
---
updated-dependencies:
- dependency-name: actions/setup-node
dependency-type: direct:production
...
Signed-off-by: dependabot[bot] <support@github.com>
23 lines
506 B
YAML
23 lines
506 B
YAML
name: build test CI
|
|
|
|
on: [push,pull_request_target]
|
|
|
|
jobs:
|
|
build-test:
|
|
name: Build Test
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@6d193bf28034eafb982f37bd894289fe649468fc # v4.1.7
|
|
|
|
- name: Setup Node 20
|
|
uses: actions/setup-node@97ca147735c170fb35096b39ef17a0fc5d9270ac # v4.0.3
|
|
with:
|
|
node-version: '20'
|
|
|
|
- name: npm-install
|
|
run: npm install
|
|
|
|
- name: npm-build
|
|
run: npm run build
|