Reworking deployment script

This commit is contained in:
David Négrier 2021-04-11 23:36:06 +02:00
parent ba5595802b
commit b0d12ed9b0
3 changed files with 18 additions and 1 deletions

View File

@ -19,6 +19,20 @@ jobs:
- name: Optimize map
uses: thecodingmachine/map-optimizer-action@master
- uses: actions/setup-node@v2
with:
node-version: '14.x'
registry-url: 'https://registry.npmjs.org'
- name: "Install dependencies"
run: npm install
- name: "Build scripts"
run: npm run build
- name: "Move scripts"
run: mv dist/* .
- name: Bash
run: |
ls -al

View File

@ -1,4 +1,7 @@
/// <reference path="../node_modules/@workadventure/iframe-api-typings/iframe_api.d.ts" />
// You can write your WorkAdventure script here, if any.
// The "WA" global object is available from anywhere.
console.log('Script started successfully');
WA.openCoWebSite('https://workadventu.re');

View File

@ -1,4 +1,4 @@
const merge = require('webpack-merge');
const { merge } = require('webpack-merge');
const common = require('./webpack.config.js');
module.exports = merge(common, {