Skip to content

chore: release v8.0.0 #33

chore: release v8.0.0

chore: release v8.0.0 #33

Workflow file for this run

name: Test Frontend
on: push
env:
NODE_ENV: 'ci'
jobs:
tests:
strategy:
matrix:
platform: [ubuntu-latest, macos-latest]
node-version: [18, 20, 22]
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install modules
run: npm install
- name: Create Frontend No Components
run: npm run start -- hello-near --frontend next-page
- name: Install
run: cd hello-near && npm install