Skip to content

Commit

Permalink
Add github CI script (foundryvtt#2339)
Browse files Browse the repository at this point in the history
  • Loading branch information
stwlam committed Jun 5, 2022
1 parent e1b1292 commit 702c93c
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 36 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: PF2e System CI

on:
push:
branches: [master]
pull_request:
branches: [master]

jobs:
build:
runs-on: ubuntu-latest

strategy:
matrix:
node-version: [16.x]

steps:
- uses: actions/checkout@v3

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}

- name: Install Deps
run: |
npm ci
- name: Build
run: |
npm run build
- name: Test
run: |
npm run test
36 changes: 0 additions & 36 deletions .gitlab-ci.yml

This file was deleted.

0 comments on commit 702c93c

Please sign in to comment.