Skip to content

Commit

Permalink
Create main.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
KroneCorylus authored May 13, 2024
1 parent 51a6ddc commit e00b03d
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Test

on:
workflow_dispatch

jobs:
build:

# Machine environment:
# https://help.github.com/en/articles/software-in-virtual-environments-for-github-actions#ubuntu-1804-lts
# We specify the Node.js version manually below, and use versioned Chrome from Puppeteer.
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v1
- name: Use Node.js 20.13.1
uses: actions/setup-node@v1
with:
node-version: 20.13.1
- name: Install dependencies
run: npm install
- name: Test
run: ng test ngx-colors

0 comments on commit e00b03d

Please sign in to comment.