Merge pull request #22 from moufmouf/fix-ci

Fixing CI
This commit is contained in:
David Négrier 2020-04-04 16:08:31 +02:00 committed by GitHub
commit 6da843748e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 7 additions and 3 deletions

View file

@ -18,7 +18,7 @@ jobs:
uses: "actions/checkout@v2.0.0"
- name: "Setup NodeJS"
- uses: actions/setup-node@v1
uses: actions/setup-node@v1
with:
node-version: '12.x'
@ -28,6 +28,8 @@ jobs:
- name: "Build"
run: yarn run build
env:
API_URL: "http://localhost:8080"
working-directory: "front"
continuous-integration-back:
@ -40,7 +42,7 @@ jobs:
uses: "actions/checkout@v2.0.0"
- name: "Setup NodeJS"
- uses: actions/setup-node@v1
uses: actions/setup-node@v1
with:
node-version: '12.x'

View file

@ -1,3 +1,5 @@
![](https://github.com/thecodingmachine/workadventure/workflows/Continuous%20Integration/badge.svg)
# Work Adventure
## Work in progress

View file

@ -17,4 +17,4 @@ let game = new Phaser.Game(config);
window.addEventListener('resize', function (event) {
game.scale.resize(window.innerWidth / resolution, window.innerHeight / resolution);
}
});