Skip to content

Commit

Permalink
ci: cleanup CI
Browse files Browse the repository at this point in the history
  • Loading branch information
TillaTheHun0 committed Mar 22, 2023
1 parent 20e0f3e commit 5474235
Showing 1 changed file with 15 additions and 7 deletions.
22 changes: 15 additions & 7 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,23 +1,31 @@

name: test
name: ⬆️ Test Hyper CI Bump

on:
push:
branches:
- "**"

jobs:
build:
runs-on: ubuntu-latest

strategy:
matrix:
node-version: [16.x]
node-version: [16.x, 18.x]

steps:
- uses: actions/checkout@v2
- name: Use NodeJS ${{ matrix.node-version }}
- name: ⬇️ Checkout repo
uses: actions/checkout@v3

- name: ⎔ Setup node ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm i
- run: npm test

- name: 📥 Download deps
uses: bahmutov/npm-install@v1

- name: ⚡ Run Tests
run: npm test
env:
CI: true

0 comments on commit 5474235

Please sign in to comment.