2023-02-15 19:24:35 -05:00
|
|
|
name: JavaScript Testing
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches-ignore:
|
|
|
|
- 'dependabot/**'
|
2023-06-06 04:42:23 -04:00
|
|
|
- 'renovate/**'
|
2023-02-15 19:24:35 -05:00
|
|
|
paths:
|
|
|
|
- 'package.json'
|
|
|
|
- 'yarn.lock'
|
|
|
|
- '.nvmrc'
|
|
|
|
- '**/*.js'
|
2023-02-19 21:20:59 -05:00
|
|
|
- '**/*.jsx'
|
2023-04-17 04:12:04 -04:00
|
|
|
- '**/*.ts'
|
|
|
|
- '**/*.tsx'
|
2023-02-15 19:24:35 -05:00
|
|
|
- '**/*.snap'
|
|
|
|
- '.github/workflows/test-js.yml'
|
|
|
|
|
|
|
|
pull_request:
|
|
|
|
paths:
|
|
|
|
- 'package.json'
|
|
|
|
- 'yarn.lock'
|
|
|
|
- '.nvmrc'
|
|
|
|
- '**/*.js'
|
2023-02-19 21:20:59 -05:00
|
|
|
- '**/*.jsx'
|
2023-04-17 04:12:04 -04:00
|
|
|
- '**/*.ts'
|
|
|
|
- '**/*.tsx'
|
2023-02-15 19:24:35 -05:00
|
|
|
- '**/*.snap'
|
|
|
|
- '.github/workflows/test-js.yml'
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
test:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Clone repository
|
2023-09-11 04:41:26 -04:00
|
|
|
uses: actions/checkout@v4
|
2023-02-15 19:24:35 -05:00
|
|
|
|
2023-10-24 07:43:24 -04:00
|
|
|
- name: Set up Javascript environment
|
|
|
|
uses: ./.github/actions/setup-javascript
|
2023-02-15 19:24:35 -05:00
|
|
|
|
|
|
|
- name: Jest testing
|
2023-05-31 20:25:13 -04:00
|
|
|
run: yarn jest --reporters github-actions summary
|