Skip to content

Commit

Permalink
#1 - Try fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
Lukasz Lupa committed May 11, 2022
1 parent 8a8b876 commit a30b967
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,15 @@ jobs:
matrix:
node-version: [12.x]
steps:
- name: Checkout
- name: "Checkout"
uses: actions/checkout@v2
- name: Use Node.js ${{matrix.node-version}}
- name: "Use Node.js ${{matrix.node-version}}"
uses: actions/setup-node@v1
with:
node-version: ${{matrix.node-version}}
- name: Install npm
run: npm ci
- name: Run all tests
- name: "Install npm"
run: npm install
- name: "Build package"
run: npm run build
- name: "Run all tests"
run: npm run test

0 comments on commit a30b967

Please sign in to comment.