Skip to content

revert: move to react 19 #26

revert: move to react 19

revert: move to react 19 #26

Workflow file for this run

name: Test
on: [push]
jobs:
test:
runs-on: ubuntu-latest
if: "!contains(github.event.head_commit.message, 'ci skip') && !contains(github.event.head_commit.message, 'skip ci')"
steps:
- uses: actions/checkout@v4
- name: Prepare repository
run: git fetch --unshallow --tags
- name: Use Node.js 18.x
uses: actions/setup-node@v4
with:
node-version: 18.x
- name: Install dependencies
uses: bahmutov/npm-install@v1
- name: Tests
run: npm run test:ci