Skip to content

Commit bd42de1

Browse files
updating gitignore and github actions
1 parent 5832fb8 commit bd42de1

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.github/workflows/ci.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ jobs:
88
build:
99
runs-on: ubuntu-latest
1010
steps:
11-
- uses: actions/checkout@v2
12-
- uses: actions/setup-node@v2
11+
- uses: actions/checkout@v3
12+
- uses: actions/setup-node@v3
1313
with:
1414
node-version: 16
1515
- run: npm install

.github/workflows/publish.yml

+3-2
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ jobs:
99
contents: read
1010
packages: write
1111
steps:
12-
- uses: actions/checkout@v2
13-
- uses: actions/setup-node@v2
12+
- uses: actions/checkout@v3
13+
- uses: actions/setup-node@v3
1414
with:
1515
node-version: 16
1616
- run: npm install
@@ -22,3 +22,4 @@ jobs:
2222
working-directory: ./build
2323
# env:
2424
# NPM_TOKEN: ${{ secrets.GITHUB_TOKEN }}
25+
- run: ls -R

.gitignore

-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
/build
88

99
# misc
10-
/.*/
1110
.DS_Store
1211
*.pem
1312

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@joshjohanning-org/npm-package-example",
3-
"version": "0.0.2",
3+
"version": "0.0.3",
44
"description": "Example project for TypeScript packages",
55
"main": "index.js",
66
"scripts": {

0 commit comments

Comments
 (0)