mirror of
https://github.com/AltarikMC/Launcher
synced 2024-11-22 06:19:50 +01:00
18 lines
364 B
YAML
18 lines
364 B
YAML
name: CI
|
|
on: [ push ]
|
|
jobs:
|
|
build:
|
|
strategy:
|
|
matrix:
|
|
os: [ windows-latest]
|
|
runs-on: ${{ matrix.os }}
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Use Node.js 16
|
|
uses: actions/setup-node@v1
|
|
with:
|
|
node-version: 16.x
|
|
cache: 'yarn'
|
|
- name: Intall dependencies
|
|
run: yarn install --frozen-lockfile
|