Skip to content

chore(deps-dev): bump follow-redirects from 1.15.3 to 1.15.4 in /packages/core #295

chore(deps-dev): bump follow-redirects from 1.15.3 to 1.15.4 in /packages/core

chore(deps-dev): bump follow-redirects from 1.15.3 to 1.15.4 in /packages/core #295

Workflow file for this run

name: CI (Linux)
on:
pull_request:
types: [opened, synchronize, reopened]
push:
branches-ignore:
- "!gh-pages"
jobs:
build_and_test:
name: x86_64-unknown-linux-gnu
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: ⚡ Cache
uses: actions/cache@v2
with:
path: |
**/node_modules
key: ${{ runner.os }}-cargo-${{ hashFiles('**/yarn.lock') }}
- uses: actions/setup-node@v3
with:
node-version: "20.x"
- uses: pnpm/action-setup@v2.0.1
with:
version: 8
- name: Install JavaScript Dependencies
run:
make install
# - name: Lint
# run: cd packages/vanilla && yarn lint
- name: Build
run: make
- name: Test
run: make test
- name: generate TS documentation
run: make docs
- name: Deploy Docuemntation to GitHub Pages
if: github.repository == 'mCaptcha/glue' && github.ref == 'refs/heads/master'
uses: JamesIves/github-pages-deploy-action@3.7.1
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
BRANCH: gh-pages
FOLDER: doc/
- name: Upload vanilla coverage to Codecov
if: github.ref == 'refs/heads/master'
uses: codecov/codecov-action@v2
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: packages/vanilla/coverage/lcov.info
flags: vanilla
- name: Upload core coverage to Codecov
if: github.ref == 'refs/heads/master'
uses: codecov/codecov-action@v2
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: packages/core/coverage/lcov.info
flags: core
- name: Upload React coverage to Codecov
if: github.ref == 'refs/heads/master'
uses: codecov/codecov-action@v2
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: packages/react/coverage/lcov.info,
flags: react
- name: Upload Svelte to Codecov
if: github.ref == 'refs/heads/master'
uses: codecov/codecov-action@v2
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: packages/svelte/coverage/lcov.info
flags: svelte