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