Import Instagram archive to a Bluesky account
9
fork

Configure Feed

Select the types of activity you want to include in your feed.

Add CodeCov to CI

+10 -2
+10 -2
.github/workflows/ci.yml
··· 38 38 - name: Install dependencies 39 39 run: npm ci 40 40 41 - - name: Run tests 42 - run: npm test 41 + - name: Run tests with coverage 42 + run: npm run coverage 43 + 44 + - name: Upload coverage to Codecov 45 + uses: codecov/codecov-action@v4 46 + with: 47 + files: ./coverage/lcov.info 48 + flags: unittests 49 + name: codecov-umbrella 50 + verbose: true