Skip to content

Commit 3a7ef3a

Browse files
committed
migrate from circleCI to github actions
1 parent 6cbaf8e commit 3a7ef3a

File tree

5 files changed

+948
-921
lines changed

5 files changed

+948
-921
lines changed

.circleci/config.yml

-26
This file was deleted.

.github/worflows/test.yml

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: Run test suite
2+
3+
on:
4+
push:
5+
branches: [ master ]
6+
pull_request:
7+
types: [ opened, synchronize ]
8+
9+
jobs:
10+
test:
11+
runs-on: ubuntu-latest
12+
13+
steps:
14+
- uses: actions/checkout@v4
15+
uses: actions/setup-node@v4
16+
with:
17+
node-version-file: .nvmrc
18+
cache: 'yarn'
19+
20+
- run: yarn install
21+
22+
- run: yarn test

.yarn/releases/yarn-4.3.1.cjs

-894
This file was deleted.

.yarn/releases/yarn-4.5.0.cjs

+925
Large diffs are not rendered by default.

.yarnrc.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
nodeLinker: node-modules
22

3-
yarnPath: .yarn/releases/yarn-4.3.1.cjs
3+
yarnPath: .yarn/releases/yarn-4.5.0.cjs

0 commit comments

Comments
 (0)