Skip to content

Commit

Permalink
update workflows ci
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonlundien committed Jun 9, 2022
1 parent 7464e8a commit dc895ee
Showing 1 changed file with 26 additions and 19 deletions.
45 changes: 26 additions & 19 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,26 +4,33 @@ on: [push]

jobs:
build:

runs-on: ubuntu-latest

strategy:
matrix:
node-version: [14.x, 16.x, 18.x]
strategy:
matrix:
node: [
14.x,
16.x,
18.x
]
vue: [
3.x
]

steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: install, build, and test
run: |
npm install
npm run build
npm run test
env:
CI: true
- name: dist
run: |
npm run dist
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node }}
- name: npm install, build, and test
run: |
npm install
npm run build
npm install vue@${{ matrix.vue }}
npm list vue
npm run lint
npm run test.5
npm run test.6
- name: dist
run: |
npm run dist

0 comments on commit dc895ee

Please sign in to comment.