Skip to content

ci debug

ci debug #15

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 }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- name: Create .env file
run: |
echo "${{ secrets.DOTENV }}" > .env
- name: Install
run: npm install
- name: Test
run: npm test
formatting:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.15.0]
steps:
- name: Show Directory
run: pwd
- name: Install
run: npm install
- name: Eslint
run: npm lint
- name: Prettier
run: npm prettier:check