File tree Expand file tree Collapse file tree 4 files changed +27
-24
lines changed Expand file tree Collapse file tree 4 files changed +27
-24
lines changed Original file line number Diff line number Diff line change 1+ name : CI
2+ on :
3+ - push
4+ - pull_request
5+ jobs :
6+ test :
7+ name : Node.js ${{ matrix.node-version }}
8+ runs-on : ubuntu-latest
9+ strategy :
10+ fail-fast : false
11+ matrix :
12+ node-version :
13+ - 18
14+ - 16
15+ - 14
16+ - 12
17+ steps :
18+ - uses : actions/checkout@v3
19+ - uses : actions/setup-node@v3
20+ with :
21+ node-version : ${{ matrix.node-version }}
22+ - run : npm install
23+ - run : npm test
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 11MIT License
22
3- Copyright (c) 2019 - 2021 Richie Bendall
3+ Copyright (c) 2019 - 2022 Richie Bendall
44
55Permission is hereby granted, free of charge, to any person obtaining a copy
66of this software and associated documentation files (the "Software"), to deal
Original file line number Diff line number Diff line change 11{
22 "name" : " fetch-charset-detection" ,
3- "version" : " 0 .0.0 " ,
3+ "version" : " 1 .0.1 " ,
44 "description" : " Detect the encoding of a buffer and stringify it." ,
55 "repository" : " https://github.com/Richienb/fetch-charset-detection.git" ,
66 "author" : " Richie Bendall <richiebendall@gmail.com>" ,
1818 "build" : " tsc" ,
1919 "dev" : " tsc --watch" ,
2020 "lint" : " xo" ,
21- "test" : " xo && ava"
21+ "test" : " xo && ava" ,
22+ "prepublishOnly" : " tsc"
2223 },
2324 "keywords" : [
2425 " content-type" ,
You can’t perform that action at this time.
0 commit comments