2023-04-21 16:04:00 +01:00
# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs
2023-11-02 10:52:45 +00:00
name : Node.js Build
2023-04-21 16:04:00 +01:00
on :
push :
branches : [ "typescript" ]
pull_request :
branches : [ "typescript" ]
jobs :
build :
runs-on : ubuntu-latest
strategy :
matrix :
2024-10-28 09:37:52 +00:00
node-version : [ 20. x]
2023-04-21 16:04:00 +01:00
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
steps :
- uses : actions/checkout@v3
- name : Use Node.js ${{ matrix.node-version }}
uses : actions/setup-node@v3
with :
node-version : ${{ matrix.node-version }}
cache : 'npm'
- run : npm ci
2023-04-21 16:07:34 +01:00
# Don't run updateCheck for now
#- run: npm run dev:updateCheck
2023-04-21 16:04:00 +01:00
- run : npm run build
2023-11-02 10:52:45 +00:00
- name : Upload build artifact
2023-11-02 10:54:29 +00:00
uses : actions/upload-artifact@v3
with :
name : 'mc-beta-server'
path : 'build/index.min.js'