docs(DTCG): Update DTCG docs with latest link and fix full name #268
Workflow file for this run
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: Verify changes | |
on: pull_request | |
jobs: | |
verify: | |
name: Verify changes | |
strategy: | |
matrix: | |
# latest node & minimum node according to pkg.json engines | |
node-version: [18.0, 21.x] | |
os: [ubuntu-latest, windows-latest] | |
runs-on: ${{matrix.os}} | |
steps: | |
- name: Set git to use LF | |
run: | | |
git config --global core.autocrlf false | |
git config --global core.eol lf | |
- uses: actions/checkout@v4 | |
- name: Setup Node ${{ matrix.node-version }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache: 'npm' | |
- name: Install Dependencies | |
run: npm ci | |
- name: Linting & Formatting | |
run: npm run lint | |
- name: Node tests | |
run: npm run test:node | |
- name: Install chromium | |
run: npx playwright install --with-deps chromium | |
- name: Browser tests | |
run: npm run test |