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

30 lines
557 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
yarn compile