2023-02-16 11:24:35 +11:00
|
|
|
name: JavaScript Testing
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches-ignore:
|
|
|
|
- 'dependabot/**'
|
2023-06-06 18:42:23 +10:00
|
|
|
- 'renovate/**'
|
2023-02-16 11:24:35 +11:00
|
|
|
paths:
|
|
|
|
- 'package.json'
|
|
|
|
- 'yarn.lock'
|
|
|
|
- '.nvmrc'
|
|
|
|
- '**/*.js'
|
2023-02-20 13:20:59 +11:00
|
|
|
- '**/*.jsx'
|
2023-04-17 18:12:04 +10:00
|
|
|
- '**/*.ts'
|
|
|
|
- '**/*.tsx'
|
2023-02-16 11:24:35 +11:00
|
|
|
- '**/*.snap'
|
|
|
|
- '.github/workflows/test-js.yml'
|
|
|
|
|
|
|
|
pull_request:
|
|
|
|
paths:
|
|
|
|
- 'package.json'
|
|
|
|
- 'yarn.lock'
|
|
|
|
- '.nvmrc'
|
|
|
|
- '**/*.js'
|
2023-02-20 13:20:59 +11:00
|
|
|
- '**/*.jsx'
|
2023-04-17 18:12:04 +10:00
|
|
|
- '**/*.ts'
|
|
|
|
- '**/*.tsx'
|
2023-02-16 11:24:35 +11:00
|
|
|
- '**/*.snap'
|
|
|
|
- '.github/workflows/test-js.yml'
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
test:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Clone repository
|
2023-09-11 18:41:26 +10:00
|
|
|
uses: actions/checkout@v4
|
2023-02-16 11:24:35 +11:00
|
|
|
|
|
|
|
- name: Set up Node.js
|
|
|
|
uses: actions/setup-node@v3
|
|
|
|
with:
|
|
|
|
cache: yarn
|
|
|
|
node-version-file: '.nvmrc'
|
|
|
|
|
|
|
|
- name: Install all yarn packages
|
|
|
|
run: yarn --frozen-lockfile
|
|
|
|
|
|
|
|
- name: Jest testing
|
2023-06-01 10:25:13 +10:00
|
|
|
run: yarn jest --reporters github-actions summary
|