Skip to content

Commit

Permalink
chore: bump dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
magic-akari committed Jun 18, 2022
1 parent d984edf commit ecbefb4
Show file tree
Hide file tree
Showing 11 changed files with 5,807 additions and 8,202 deletions.
18 changes: 10 additions & 8 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,15 @@ jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '14'
registry-url: "https://registry.npmjs.org"

- run: npm ci --ignore-scripts
- run: npm run listdiff
- run: npm run lint
node-version: 16
- uses: pnpm/[email protected]
with:
run_install: |
- recursive: true
args: [--ignore-scripts, --frozen-lockfile]
- run: pnpm run listdiff
- run: pnpm run lint
- run: make build
18 changes: 10 additions & 8 deletions .github/workflows/release-local.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,17 @@ jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '14'
registry-url: "https://registry.npmjs.org"

- run: npm ci --ignore-scripts
- run: npm run listdiff
- run: npm run lint
node-version: 16
- uses: pnpm/[email protected]
with:
run_install: |
- recursive: true
args: [--ignore-scripts, --frozen-lockfile]
- run: pnpm run listdiff
- run: pnpm run lint
- run: make build

- name: Deploy Github Pages
Expand Down
18 changes: 10 additions & 8 deletions .github/workflows/release-remote.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,17 @@ jobs:
if: startsWith(github.ref, 'refs/tags/v')
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '14'
registry-url: "https://registry.npmjs.org"

- run: npm ci --ignore-scripts
- run: npm run listdiff
- run: npm run lint
node-version: 16
- uses: pnpm/[email protected]
with:
run_install: |
- recursive: true
args: [--ignore-scripts, --frozen-lockfile]
- run: pnpm run listdiff
- run: pnpm run lint
- run: make deploy

- name: Publish NPM
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ nomodule: $(target_es6)


build_html:
$(ts-node) -P scripts/tsconfig.json scripts/index.html.tsx > build/index.html
$(ts-node) -T -P scripts/tsconfig.json scripts/index.html.tsx > build/index.html

dev: export NODE_ENV=development
dev: $(target_dev) build_html watch_esm
Expand Down
Loading

0 comments on commit ecbefb4

Please sign in to comment.