Bump actions/setup-node from 97ca147735c170fb35096b39ef17a0fc5d9270ac to 0a44ba7841725637a19e28fa30b79a866c81b0a6 #415
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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@0a44ba7841725637a19e28fa30b79a866c81b0a6 # v4.0.3 | |
with: | |
node-version: '20' | |
- name: npm-install | |
run: npm install | |
- name: npm-build | |
run: npm run build |