1
0
mirror of https://github.com/fluencelabs/libp2p-ts synced 2025-04-03 02:41:04 +00:00

Merge pull request from polkadot-js/jg-actions-split

Split GH actions
This commit is contained in:
Jaco Greeff 2019-10-04 12:03:34 +02:00 committed by GitHub
commit 09c0a115a9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -1,9 +1,9 @@
name: Node CI name: CI
on: push
on: [push]
jobs: jobs:
lint: lint:
name: Linting
runs-on: ubuntu-latest runs-on: ubuntu-latest
strategy: strategy:
matrix: matrix:
@ -16,10 +16,11 @@ jobs:
node-version: ${{ matrix.node-version }} node-version: ${{ matrix.node-version }}
- name: lint - name: lint
run: | run: |
yarn install yarn install --frozen-lockfile
yarn lint yarn lint
test: test:
name: Testing
runs-on: ubuntu-latest runs-on: ubuntu-latest
strategy: strategy:
matrix: matrix:
@ -32,10 +33,11 @@ jobs:
node-version: ${{ matrix.node-version }} node-version: ${{ matrix.node-version }}
- name: test - name: test
run: | run: |
yarn install yarn install --frozen-lockfile
yarn test yarn test
build: build_code:
name: Build Code
runs-on: ubuntu-latest runs-on: ubuntu-latest
strategy: strategy:
matrix: matrix:
@ -48,7 +50,5 @@ jobs:
node-version: ${{ matrix.node-version }} node-version: ${{ matrix.node-version }}
- name: build - name: build
run: | run: |
yarn install yarn install --frozen-lockfile
yarn build yarn build
env:
CI: true