Implement the "publish-action" action

This commit is contained in:
MaksimZhukov
2021-05-21 19:59:44 +03:00
parent d90d23df2a
commit d8eb8e53b7
22 changed files with 12475 additions and 0 deletions

27
.github/workflows/test.yml vendored Normal file
View File

@ -0,0 +1,27 @@
name: Tests
on:
push:
branches:
- main
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set Node.JS
uses: actions/setup-node@v2
with:
node-version: 12.x
- name: Install dependencies
run: npm install
- name: Build
run: npm run build
- name: Run tests
run: npm run test