mirror of
https://github.com/greggman/twgl.js.git
synced 2025-12-08 19:26:07 +00:00
31 lines
588 B
YAML
31 lines
588 B
YAML
name: Test
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
pull_request:
|
|
jobs:
|
|
test:
|
|
runs-on: macos-latest
|
|
steps:
|
|
- name: Checkout 🍔🍟🥤
|
|
uses: actions/checkout@v4
|
|
with:
|
|
persist-credentials: false
|
|
|
|
- name: Use Node.js 😂
|
|
uses: actions/setup-node@v4
|
|
with:
|
|
node-version: '18'
|
|
|
|
- name: Test 🧪
|
|
run: |
|
|
npm ci
|
|
npm run check-ci
|
|
|
|
- name: Upload Artifact ⬆️
|
|
uses: actions/upload-artifact@v4
|
|
with:
|
|
path: ./screenshots/*.png
|
|
overwrite: true
|