Skip to content

Commit

Permalink
update gh action
Browse files Browse the repository at this point in the history
  • Loading branch information
abbr committed Aug 5, 2021
1 parent 3cea5e9 commit d864625
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 4 deletions.
12 changes: 11 additions & 1 deletion .github/workflows/npm_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,19 @@ name: npm_test
on: [pull_request, push]
jobs:
npm_test:
runs-on: ubuntu-20.04
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '16'
- run: npm install
- run: npm test
- name: Upload bin folder
uses: actions/upload-artifact@v2
with:
name: bin
path: bin/
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "deasync",
"version": "0.1.21",
"version": "0.1.22",
"description": "Turns async function into sync via JavaScript wrapper of Node event loop",
"main": "index.js",
"author": "Vladimir Kurchatkin <[email protected]>",
Expand Down

0 comments on commit d864625

Please sign in to comment.