Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .babelrc
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"@babel/preset-env",
{
"targets": {
"node": "14.15.0"
"node": "22.14.0"
}
}
]
Expand Down
55 changes: 55 additions & 0 deletions .circleci/config.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
version: 2.1

jobs:
install:
docker:
- image: cimg/node:lts
working_directory: ~/repo
steps:
- checkout
- restore_cache:
keys:
- nm-{{ .Branch }}-{{ checksum "package-json.lock" }}
- run: bun install --frozen-lockfile
- save_cache:
key: nm-{{ .Branch }}-{{ checksum "package-json.lock" }}
paths:
- node_modules

test_cover:
docker:
- image: cimg/node:lts
working_directory: ~/repo
steps:
- checkout
- restore_cache:
keys:
- nm-{{ .Branch }}-{{ checksum "bun.lock" }}
- run: npm run test

lint:
docker:
- image:cimg/node:lts
working_directory: ~/repo
steps:
- checkout
- restore_cache:
keys:
- nm-{{ .Branch }}-{{ checksum "bun.lock" }}
- run: npm run lint

workflows:
version: 2
build_and_publish:
jobs:
- install:
context: la_build_vars

- test:
context: la_build_vars
requires:
- install

- lint:
requires:
- install
35 changes: 0 additions & 35 deletions .github/workflows/CI.yml

This file was deleted.

19 changes: 0 additions & 19 deletions .travis.yml

This file was deleted.

22 changes: 0 additions & 22 deletions ISSUE_TEMPLATE.md

This file was deleted.

Loading