This repository has been archived by the owner on Nov 20, 2024. It is now read-only.
fix: uvs array might change if the region is updated and the uvs are … #151
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build CI | |
on: | |
push: | |
branches: [ '**' ] | |
tags: [ '**' ] | |
release: | |
types: [ 'created' ] | |
pull_request: | |
branches: [ '**' ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Use Node.js 16.x | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 16 | |
- name: Install npm | |
run: npm install -g npm@8 | |
- name: Install dependencies | |
run: npm ci | |
- name: Build | |
run: npm run build | |
- name: Test | |
uses: GabrielBB/xvfb-action@v1 | |
with: | |
run: npm test |