8bitworkshop/.github/workflows/node.js.yml

39 lines
1.1 KiB
YAML
Raw Normal View History

2021-09-16 16:34:01 +00:00
# This workflow will do a clean install of node dependencies, cache/restore them, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: Node.js CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
steps:
2023-11-13 20:03:57 +00:00
- uses: actions/checkout@v4
2021-09-16 16:34:01 +00:00
- name: Use Node.js ${{ matrix.node-version }}
2023-11-13 20:03:57 +00:00
uses: actions/setup-node@v3
2021-09-16 16:34:01 +00:00
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
2021-09-16 16:42:42 +00:00
- run: git submodule init
- run: git submodule update
2021-09-16 16:34:01 +00:00
- run: npm ci
2022-02-21 15:33:59 +00:00
- run: npm run build --if-present
2021-09-16 16:34:01 +00:00
- run: npm test
2021-09-21 15:43:40 +00:00
env:
TEST8BIT_GITHUB_TOKEN: ${{ secrets.TEST8BIT_GITHUB_TOKEN }}
2022-02-21 15:33:59 +00:00
- run: make distro
2022-02-21 15:30:12 +00:00
- name: Deploy
uses: JamesIves/github-pages-deploy-action@v4.2.5
with:
branch: gh-pages
folder: tmp/dist