Skip to content

Commit

Permalink
fix: Upgrade dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
prantlf committed Aug 9, 2024
1 parent f4b8f46 commit 355aad5
Show file tree
Hide file tree
Showing 24 changed files with 1,745 additions and 3,065 deletions.
13 changes: 0 additions & 13 deletions .denolint.json

This file was deleted.

47 changes: 25 additions & 22 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,37 +1,40 @@
name: Test or Release

on:
- push
- pull_request
push:
branches:
- master
tags-ignore:
- '**'
paths-ignore:
- '**/*.md'
- LICENSE
pull_request:

jobs:
test-or-release:
runs-on: ubuntu-latest
runs-on: macos-13
steps:
- name: Checkout Sources
uses: actions/checkout@v3
- name: Install Node
uses: actions/setup-node@v3
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
with:
version: latest
- uses: actions/setup-node@v4
with:
node-version: 'lts/*'
registry-url: 'https://registry.npmjs.org'
- name: Install PNPM
uses: pnpm/action-setup@v2
cache: 'pnpm'
- run: pnpm i --frozen-lockfile --no-verify-store-integrity
- run: npm run build
- run: npm test
- uses: codecov/codecov-action@v4
if: ${{ github.ref_name == 'master' }}
with:
version: latest
run_install: |
- args: [--frozen-lockfile, --no-verify-store-integrity]
- name: Build
run: npm run build
- name: Test
run: npm test
- name: Coverage
uses: codecov/codecov-action@v3
- name: Publish
uses: cycjimmy/semantic-release-action@v3
token: ${{ secrets.CODECOV_TOKEN }}
- uses: prantlf/publish-release-action@v1
if: ${{ github.ref_name == 'master' }}
with:
semantic_version: 19
branches: master
no-archives: true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
Loading

0 comments on commit 355aad5

Please sign in to comment.