Skip to content

Merge pull request #62 from suitcss/dependabot/github_actions/actions… #40

Merge pull request #62 from suitcss/dependabot/github_actions/actions…

Merge pull request #62 from suitcss/dependabot/github_actions/actions… #40

Workflow file for this run

name: CI
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node: [ '16', '18', '20' ]
name: Run tests on Node ${{ matrix.node }}
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
- name: Install dependencies
run: yarn install
- name: Run tests
run: yarn test