Skip to content

workflow

workflow #1

Workflow file for this run

name: CI
on:
push:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: ["16.15.0"]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
run: |
nvm install ${{ matrix.node-version }}
nvm use ${{ matrix.node-version }}
- name: Create .env file
run: |
echo "${{ secrets.DOTENV }}" > .env
- name: Install
run: nvm run install
- name: Test
run: nvm run test