Skip to content

Commit

Permalink
Straight-swap of test pipeline.
Browse files Browse the repository at this point in the history
  • Loading branch information
Tzrlk committed Apr 24, 2023
1 parent 62e5aa6 commit d8e6d64
Show file tree
Hide file tree
Showing 2 changed files with 42 additions and 13 deletions.
42 changes: 42 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
name: tests

on:
workflow_dispatch:
pull_request:
push:
branches:

permissions:
contents: read
pull-requests: read

jobs:

test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node-version:
- 8
- 10
- 12
steps:

- name: checkout
uses: actions/checkout@v3

- name: node-setup
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: npm

- name: node-deps
run: npm clean-install

- name: lint
run: npm run lint

- name: test
run: npm run test
13 changes: 0 additions & 13 deletions .travis.yml

This file was deleted.

0 comments on commit d8e6d64

Please sign in to comment.