File tree Expand file tree Collapse file tree 2 files changed +33
-2
lines changed Expand file tree Collapse file tree 2 files changed +33
-2
lines changed Original file line number Diff line number Diff line change
1
+ # This is a basic workflow to help you get started with Actions
2
+
3
+ name : CI
4
+
5
+ # Controls when the action will run. Triggers the workflow on push
6
+ # events but only for the master branch
7
+ on :
8
+ push :
9
+ branches : [ master ]
10
+
11
+ # A workflow run is made up of one or more jobs that can run sequentially or in parallel
12
+ jobs :
13
+ # This workflow contains a single job called "build"
14
+ build :
15
+ # The type of runner that the job will run on
16
+ runs-on : ubuntu-latest
17
+
18
+ # Steps represent a sequence of tasks that will be executed as part of the job
19
+ steps :
20
+ # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
21
+ - uses : actions/checkout@v2
22
+
23
+ # Runs a single command using the runners shell
24
+ - name : Run a one-line script
25
+ run : echo Hello, world!
26
+
27
+ # Runs a set of commands using the runners shell
28
+ - name : Run a multi-line script
29
+ run : |
30
+ echo Add other actions to build,
31
+ echo test, and deploy your project.
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ import { Actor } from "../Actors/Actor";
2
2
import { Tile } from "../tile" ;
3
3
import { GameObject } from "../GameObject" ;
4
4
import { Window } from "./window" ;
5
- import { Room } from "../Rooms/room " ;
5
+ import { Room } from "../Rooms/Room " ;
6
6
import { Floor } from "../Rooms/Environment" ;
7
7
import { Camera } from "./camera" ;
8
8
import { Menu , MenuInfo } from "./Menu/Menu" ;
@@ -273,4 +273,4 @@ export class Renderer {
273
273
return x . toString ( ) + 'px' ;
274
274
}
275
275
276
- }
276
+ }
You can’t perform that action at this time.
0 commit comments