Import Instagram archive to a Bluesky account
9
fork

Configure Feed

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

Run test and lint concurrently

+17 -2
+17 -2
.github/workflows/ci.yml
··· 5 5 pull_request: 6 6 7 7 jobs: 8 - test: 8 + lint: 9 9 runs-on: ubuntu-latest 10 - 10 + 11 11 steps: 12 12 - uses: actions/checkout@v4 13 13 ··· 22 22 23 23 - name: Run ESLint 24 24 run: npm run lint 25 + 26 + test: 27 + runs-on: ubuntu-latest 28 + 29 + steps: 30 + - uses: actions/checkout@v4 31 + 32 + - name: Use Node.js 33 + uses: actions/setup-node@v4 34 + with: 35 + node-version: '20.x' 36 + cache: 'npm' 37 + 38 + - name: Install dependencies 39 + run: npm ci 25 40 26 41 - name: Run tests 27 42 run: npm test