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 f384658 commit 4e4d675
Showing 1 changed file with 4 additions and 8 deletions.
12 changes: 4 additions & 8 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,19 +7,15 @@ on:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x]
steps:
- name: "Checkout"
uses: actions/checkout@v3
- name: "Use Node.js ${{matrix.node-version}}"
- name: "Use Node.js"
uses: actions/setup-node@v3
with:
node-version: ${{matrix.node-version}}
node-version: 14
cache: "npm"
- name: "Install npm"
run: npm install
- name: "Build package"
run: npm run build
run: npm ci
- name: "Run all tests"
run: npm run test

0 comments on commit 4e4d675

Please sign in to comment.