Skip to content

Delete web/next.config.js #55

Delete web/next.config.js

Delete web/next.config.js #55

Workflow file for this run

name: test
on: [push, pull_request]
permissions: read-all
jobs:
test:
name: "Test on Node.js ${{ matrix.node-version }}"
if: github.repository == 'azu/mytweets' # For testing
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14, 16]
steps:
- name: checkout
uses: actions/checkout@v2
- name: setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- name: Install
run: yarn install
- name: Test
run: yarn test