Skip to content

Commit

Permalink
chore: Update deps, drop yarn, update ci actions.
Browse files Browse the repository at this point in the history
  • Loading branch information
jheer committed Dec 28, 2023
1 parent 2accdff commit e55a1e1
Show file tree
Hide file tree
Showing 4 changed files with 3,529 additions and 2,125 deletions.
18 changes: 10 additions & 8 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,23 +12,25 @@ jobs:

strategy:
matrix:
node: [18, 20, 21]
node: [18, 20]

name: Node ${{ matrix.node }}

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

- name: Setup Node ${{ matrix.node }}
uses: actions/setup-node@v1
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
cache: "npm"

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

- name: Run linter
run: npm run lint

- name: Run tests
run: yarn test
run: npm run test

- name: Run linter
run: yarn lint
Loading

0 comments on commit e55a1e1

Please sign in to comment.