Skip to content

Bump @testing-library/react from 14.3.0 to 16.0.1 #765

Bump @testing-library/react from 14.3.0 to 16.0.1

Bump @testing-library/react from 14.3.0 to 16.0.1 #765

Workflow file for this run

name: React CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18, 20]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Create .env file
run: |
touch .okta.env
echo ISSUER=https://dev-17700857.okta.com/oauth2/default > .okta.env
echo CLIENT_ID=0oa73s4gvu9vD6vxv5d7 >> .okta.env
cat .okta.env
- name: Build and test
run: |
npm run build
npm test