File tree Expand file tree Collapse file tree 3 files changed +27
-8
lines changed Expand file tree Collapse file tree 3 files changed +27
-8
lines changed Original file line number Diff line number Diff line change
1
+ name : Test
2
+
3
+ on :
4
+ push :
5
+ branches : [main]
6
+ pull_request :
7
+ branches : [main]
8
+
9
+ jobs :
10
+ build :
11
+ runs-on : ubuntu-latest
12
+ strategy :
13
+ matrix :
14
+ node-version : [12.x, 14.x, 16.x]
15
+ steps :
16
+ - name : Checkout
17
+ uses : actions/checkout@v2
18
+
19
+ - name : Use Node.js ${{ matrix.node-version }}
20
+ uses : actions/setup-node@v2
21
+ with :
22
+ node-version : ${{ matrix.node-version }}
23
+ cache : ' yarn'
24
+
25
+ - run : yarn install --frozen-lockfile
26
+ - run : yarn test
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
1
MIT License
2
2
3
- Copyright (c) 2017-2020 Hein Rutjes
3
+ Copyright (c) 2017-2021 Hein Rutjes
4
4
5
5
Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
of this software and associated documentation files (the "Software"), to deal
You can’t perform that action at this time.
0 commit comments