Merge pull request #66 from mCaptcha/prep-vanilla-glue-0.1.0-rc2 #291
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |