Skip to content

Bump @testing-library/jest-dom from 5.17.0 to 6.1.3 #208

Bump @testing-library/jest-dom from 5.17.0 to 6.1.3

Bump @testing-library/jest-dom from 5.17.0 to 6.1.3 #208

# When...
# - A commit is pushed to main
# - A pull request is opened
# This workflow will...
# - Run tests using node
# - Run build using node
name: CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
test:
name: Run Tests
runs-on: ubuntu-latest
permissions:
contents: read
packages: read
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
registry-url: "https://npm.pkg.github.com"
- name: Install npm dependencies
run: npm ci --ignore-scripts
env:
NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}}
- name: Run validation
run: npm run validate
build:
name: Run Build
runs-on: ubuntu-latest
permissions:
contents: read
packages: read
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
registry-url: "https://npm.pkg.github.com"
- name: Install npm dependencies
run: npm ci --ignore-scripts
env:
NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}}
- name: Run build
run: npm run build