Skip to content

fix(ci): use fine-grained PAT for creating PR #12

fix(ci): use fine-grained PAT for creating PR

fix(ci): use fine-grained PAT for creating PR #12

Workflow file for this run

name: CI
on:
push:
branches:
- master
pull_request:
branches:
- master
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js 20.x
uses: actions/setup-node@v4
with:
node-version: 20.x
- name: Build SDK
run: |
npm install
npm run build
- name: Install test-app dependencies
run: npm install
working-directory: test-app
- name: Install Playwright browsers
run: npx playwright install --with-deps chromium
working-directory: test-app
- name: Run Playwright tests
run: npx playwright test
working-directory: test-app
env:
CI: true