From 9b6c72528edc9414a6091cf2963095040329ff5a Mon Sep 17 00:00:00 2001 From: Ahmad <103906421+ahmadk953@users.noreply.github.com> Date: Thu, 21 Sep 2023 20:24:20 -0400 Subject: [PATCH] Create npm-build-and-compile.yml Signed-off-by: Ahmad <103906421+ahmadk953@users.noreply.github.com> --- .github/workflows/npm-build-and-compile.yml | 35 +++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 .github/workflows/npm-build-and-compile.yml diff --git a/.github/workflows/npm-build-and-compile.yml b/.github/workflows/npm-build-and-compile.yml new file mode 100644 index 0000000..7f4c44c --- /dev/null +++ b/.github/workflows/npm-build-and-compile.yml @@ -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