Skip to content

Commit

Permalink
fix: initial deploy
Browse files Browse the repository at this point in the history
  • Loading branch information
maxholman committed Apr 21, 2022
1 parent 06911af commit f63fed4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,7 @@ jobs:
with:
node-version: 16
registry-url: https://registry.npmjs.org/
- run: yarn install --production=false --non-interactive --frozen-lockfile
- run: yarn build
- run: make
- run: npm publish --access=public
env:
NODE_AUTH_TOKEN: ${{secrets.npm_token}}
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@ SRC = $(wildcard src)

all: dist

node_modules: package.json yarn.lock
node_modules: yarn.lock
yarn install

yarn.lock: package.json
yarn install
yarn install --frozen-lockfile

test: dist node_modules
yarn test
Expand Down

0 comments on commit f63fed4

Please sign in to comment.