Skip to content

Commit

Permalink
chore: Updated ci
Browse files Browse the repository at this point in the history
  • Loading branch information
tgreyuk committed Feb 14, 2024
1 parent 49d9d03 commit a7a7876
Showing 1 changed file with 17 additions and 17 deletions.
34 changes: 17 additions & 17 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
name: CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node: ["12", "14", "16"]
name: Node ${{ matrix.node }}
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Node
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node }}
- name: Install
run: npm install
- name: Build and Test
run: npm run prepublishOnly
build:
runs-on: ubuntu-latest
strategy:
matrix:
node: ["16"]
name: Node ${{ matrix.node }}
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Node
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node }}
- name: Install
run: npm install
- name: Build and Test
run: npm run prepublishOnly

0 comments on commit a7a7876

Please sign in to comment.