datatable/.github/workflows/test-pull-request.yml
2022-01-04 12:57:29 +05:30

15 lines
320 B
YAML

name: Test Pull Request
on: pull_request
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: '12'
- run: yarn install --frozen-lockfile
- run: yarn lint
- run: yarn build
- run: yarn test