File tree Expand file tree Collapse file tree 2 files changed +24
-0
lines changed Expand file tree Collapse file tree 2 files changed +24
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : ci
2
+
3
+ on :
4
+ push :
5
+
6
+ jobs :
7
+ build :
8
+ runs-on : ubuntu-latest
9
+
10
+ strategy :
11
+ matrix :
12
+ node-version : [ '14', '16', '18' ]
13
+
14
+ steps :
15
+ - uses : actions/checkout@v2
16
+
17
+ - name : Use Node.js ${{ matrix.node-version }}
18
+ uses : actions/setup-node@v1
19
+ with :
20
+ node-version : ${{ matrix.node-version }}
21
+
22
+ - run : npm install
23
+ - run : npm test
Original file line number Diff line number Diff line change 3
3
### Apple's Property list parser/builder for Node.js and browsers
4
4
5
5
[ ![ Build Status] ( https://travis-ci.org/TooTallNate/plist.js.svg?branch=master )] ( https://travis-ci.org/TooTallNate/plist.js )
6
+ [ ![ ci] ( https://github.com/TooTallNate/plist.js/actions/workflows/ci.yml/badge.svg )] ( https://github.com/TooTallNate/plist.js/actions/workflows/ci.yml )
6
7
7
8
Provides facilities for reading and writing Plist (property list) files.
8
9
These are often used in programming OS X and iOS applications, as well
You can’t perform that action at this time.
0 commit comments