update referrer policy for hyperlinks #5241
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 | |
on: | |
push: | |
pull_request: | |
types: [opened, reopened] | |
jobs: | |
install: | |
# NOTE: Netlify uses ubuntu 16.08 but Github Actions does not offer it by default. | |
# Hence, we default to the latest version. | |
runs-on: ubuntu-latest | |
env: | |
TIPTAP_PRO_TOKEN: ${{secrets.TIPTAP_PRO_TOKEN}} | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: "18.x" | |
cache: "npm" | |
- name: Cache Node.js modules | |
uses: actions/cache@v3 | |
with: | |
# npm cache files are stored in `~/.npm` on Linux/macOS | |
path: ~/.npm | |
key: ${{ runner.OS }}-node-${{ hashFiles('**/package-lock.json') }} | |
restore-keys: | | |
${{ runner.OS }}-node- | |
${{ runner.OS }}- | |
- name: Install dependencies | |
run: npm ci | |
lint: | |
needs: install | |
runs-on: ubuntu-latest | |
env: | |
TIPTAP_PRO_TOKEN: ${{secrets.TIPTAP_PRO_TOKEN}} | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: "18.x" | |
cache: "npm" | |
- name: Load Node.js modules | |
uses: actions/cache@v3 | |
with: | |
# npm cache files are stored in `~/.npm` on Linux/macOS | |
path: ~/.npm | |
key: ${{ runner.OS }}-node-${{ hashFiles('**/package-lock.json') }} | |
- name: Install dependencies | |
run: npm ci | |
- name: Run eslint fix | |
run: npm run lint-fix | |
- name: Run prettier fix | |
run: npm run format-fix | |
build: | |
needs: lint | |
runs-on: ubuntu-latest | |
env: | |
TIPTAP_PRO_TOKEN: ${{secrets.TIPTAP_PRO_TOKEN}} | |
CI: false | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: "18.x" | |
cache: "npm" | |
- name: Load Node.js modules | |
uses: actions/cache@v3 | |
with: | |
# npm cache files are stored in `~/.npm` on Linux/macOS | |
path: ~/.npm | |
key: ${{ runner.OS }}-node-${{ hashFiles('**/package-lock.json') }} | |
- name: Install dependencies | |
run: npm ci | |
- name: Run build | |
run: npm run build | |
test: | |
needs: build | |
runs-on: ubuntu-latest | |
environment: staging | |
env: | |
CYPRESS_RECORD_KEY: ${{secrets.CYPRESS_RECORD_KEY}} | |
CYPRESS_BASEURL: ${{secrets.CYPRESS_BASEURL}} | |
CYPRESS_COOKIE_NAME: ${{secrets.CYPRESS_COOKIE_NAME}} | |
CYPRESS_COOKIE_VALUE: ${{secrets.CYPRESS_COOKIE_VALUE}} | |
CYPRESS_TEST_REPO_NAME: ${{secrets.CYPRESS_TEST_REPO_NAME}} | |
USERNAME: ${{secrets.USERNAME}} | |
PERSONAL_ACCESS_TOKEN: ${{secrets.PERSONAL_ACCESS_TOKEN}} | |
E2E_COMMIT_HASH: ${{secrets.E2E_COMMIT_HASH}} | |
TIPTAP_PRO_TOKEN: ${{secrets.TIPTAP_PRO_TOKEN}} | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: "18.x" | |
cache: "npm" | |
- name: Load Node.js modules | |
uses: actions/cache@v3 | |
with: | |
# npm cache files are stored in `~/.npm` on Linux/macOS | |
path: ~/.npm | |
key: ${{ runner.OS }}-node-${{ hashFiles('**/package-lock.json') }} | |
- name: Install dependencies | |
run: npm ci | |
- name: Run tests | |
run: npm run test |