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 33### Apple's Property list parser/builder for Node.js and browsers
44
55[ ![ 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 )
67
78Provides facilities for reading and writing Plist (property list) files.
89These are often used in programming OS X and iOS applications, as well
You can’t perform that action at this time.
0 commit comments