poixpixel-discord-bot/.github/workflows/npm-build-and-compile.yml
Ahmad 83cc638b7f
Update npm-build-and-compile.yml
Signed-off-by: Ahmad <103906421+ahmadk953@users.noreply.github.com>
2023-09-28 16:46:51 -04:00

37 lines
701 B
YAML

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 }}
cache: yarn
- name: Build
run: |
cp ./source/config.example.json ./source/config.json
yarn install
ls ~/.npm
yarn compile
- name: Cache Assets
uses: actions/cache@v3.3.2
with:
path: ./node_modules
key: node-modules