Bumps [actions/checkout](https://github.com/actions/checkout) from 1 to 2.3.4. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v1...v2.3.4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
14 lines
229 B
YAML
14 lines
229 B
YAML
name: "Test"
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
check_pr:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2.3.4
|
|
|
|
- name: "yarn install"
|
|
run: yarn install
|
|
|
|
- name: "yarn test"
|
|
run: yarn test |