mirror of
https://github.com/captbaritone/webamp.git
synced 2026-07-22 09:37:17 +00:00
Try out Actions (#892)
* Update nodejs.yml * Try using Yarn * push is more generic than pull_request We don't need both
This commit is contained in:
parent
5deedf6846
commit
6383334f09
1 changed files with 24 additions and 0 deletions
24
.github/workflows/nodejs.yml
vendored
Normal file
24
.github/workflows/nodejs.yml
vendored
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
name: CI
|
||||
|
||||
on: [push]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
strategy:
|
||||
matrix:
|
||||
node-version: [10.x, 12.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: Run Tests
|
||||
run: |
|
||||
yarn
|
||||
yarn travis-tests
|
||||
env:
|
||||
CI: true
|
||||
Loading…
Add table
Add a link
Reference in a new issue