Skip to content

Commit

Permalink
chore: upgrade deps, ESM module
Browse files Browse the repository at this point in the history
  • Loading branch information
akiver committed Sep 11, 2023
1 parent 456640c commit da4964e
Show file tree
Hide file tree
Showing 8 changed files with 766 additions and 337 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/checks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,18 +14,18 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Set up NodeJS
uses: actions/setup-node@v2
uses: actions/setup-node@v3
with:
node-version-file: '.node-version'

- name: Install dependencies
run: yarn install --frozen-lockfile
run: npm ci

- name: TSC compile
run: yarn tsc
run: npm run compile

- name: Test
run: yarn test
run: npm run test
2 changes: 1 addition & 1 deletion .node-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
17
20
3 changes: 2 additions & 1 deletion .prettierignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
node_modules
dist
yarn.lock
package-lock.json
.*ignore
__snapshots__
LICENSE
.node-version
Loading

0 comments on commit da4964e

Please sign in to comment.