Skip to content
This repository has been archived by the owner on Jul 26, 2024. It is now read-only.

Migration to Codeberg #16

Migration to Codeberg

Migration to Codeberg #16

Workflow file for this run

# SPDX-License-Identifier: GPL-3.0-or-later
# Copyright (C) 2022 Roland Csaszar
#
# Project: notoy-pwa
# File: tests.yml
# Date: 13.Feb.2022
#
# ==============================================================================
name: Tests
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: npm install --dev
- run: npm install --save-dev purescript
- run: npm run test