File tree Expand file tree Collapse file tree 1 file changed +31
-0
lines changed Expand file tree Collapse file tree 1 file changed +31
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : Test Firestore
2
+
3
+ on : pull_request
4
+
5
+ jobs :
6
+ test :
7
+ name : Test Firestore
8
+ runs-on : ubuntu-latest
9
+
10
+ steps :
11
+ - name : Checkout Repo
12
+ uses : actions/checkout@master
13
+ with :
14
+ # This makes Actions fetch all Git history so run-changed script can diff properly.
15
+ fetch-depth : 0
16
+ - name : Set up Node (10)
17
+ uses : actions/setup-node@v1
18
+ with :
19
+ node-version : 10.x
20
+ - name : install Chrome stable
21
+ run : |
22
+ sudo apt-get update
23
+ sudo apt-get install google-chrome-stable
24
+ - name : Test setup and yarn install
25
+ run : |
26
+ cp config/ci.config.json config/project.json
27
+ yarn
28
+ - name : yarn build
29
+ run : yarn build
30
+ - name : Run tests on changed packages
31
+ run : xvfb-run yarn test:changed:firestore
You can’t perform that action at this time.
0 commit comments