Skip to content

Commit

Permalink
Add testing GitHub workdlow
Browse files Browse the repository at this point in the history
  • Loading branch information
Vylpes committed Sep 14, 2023
1 parent ba5ccb5 commit 39cd10f
Show file tree
Hide file tree
Showing 5 changed files with 27 additions and 39 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/testing.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Testing

on:
push:
branches:
- main
- develop
- feature/*
- hotfix/*

jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]

steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: yarn install --frozen-lockfile
- run: yarn build
- run: yarn test
- run: yarn lint
10 changes: 0 additions & 10 deletions .gitlab-ci.yml

This file was deleted.

Empty file removed .gitlab/.gitkeep
Empty file.
Empty file.
29 changes: 0 additions & 29 deletions .gitlab/merge_request_templates/default.md

This file was deleted.

0 comments on commit 39cd10f

Please sign in to comment.