Initial commit
This commit is contained in:
24
node_modules/with/.github/workflows/test.yml
generated
vendored
Normal file
24
node_modules/with/.github/workflows/test.yml
generated
vendored
Normal file
@ -0,0 +1,24 @@
|
||||
name: Test
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
branches:
|
||||
- master
|
||||
|
||||
jobs:
|
||||
test:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
strategy:
|
||||
matrix:
|
||||
node-version: [10.x, 12.x, 14.x]
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Use Node.js ${{ matrix.node-version }}
|
||||
uses: actions/setup-node@v1
|
||||
with:
|
||||
node-version: ${{ matrix.node-version }}
|
||||
- run: yarn install --frozen-lockfile
|
||||
- run: yarn prettier:check
|
||||
- run: yarn test
|
Reference in New Issue
Block a user