Skip to content

Commit ad35613

Browse files
authored
Create ubuntu-build.yml
Testing out actions for building. This is a manual github action to build on ubuntu-latest
1 parent 87c5495 commit ad35613

File tree

1 file changed

+32
-0
lines changed

1 file changed

+32
-0
lines changed

.github/workflows/ubuntu-build.yml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node
2+
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs
3+
4+
# testing [cmw]
5+
6+
name: Node.js CI
7+
8+
on:
9+
workflow_dispatch:
10+
inputs:
11+
tags:
12+
description: 'DOIT'
13+
required: false
14+
type: boolean
15+
16+
jobs:
17+
build:
18+
19+
runs-on: ubuntu-latest
20+
21+
steps:
22+
- uses: actions/checkout@v3
23+
- name: Use Node.js
24+
uses: actions/setup-node@v3
25+
with:
26+
node-version: '20.x'
27+
cache: 'npm'
28+
- name: Install env
29+
run: npm run init
30+
- name: Build Output
31+
run: npm run build
32+

0 commit comments

Comments
 (0)