Create npm-build-and-compile.yml

Signed-off-by: Ahmad <103906421+ahmadk953@users.noreply.github.com>
This commit is contained in:
Ahmad 2023-09-21 20:24:20 -04:00 committed by GitHub
parent 84673f4ccf
commit 9b6c72528e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -0,0 +1,35 @@
name: NodeJS Build and Compile
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Build
run: |
npm install -g yarn
yarn install
yarn compile
- name: Cache Assets
uses: actions/cache@v3.3.2
with:
path: ./node_modules
key: node-modules