Skip to content

feat: meta charset should be the first one #229

feat: meta charset should be the first one

feat: meta charset should be the first one #229

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
types:
- opened
- synchronize
- reopened
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
cache: 'yarn'
- name: Restore nextjs build menehera-site from cache
uses: actions/cache@v2
with:
path: ${{ github.workspace }}/.next/cache
key: ${{ runner.os }}-${{ hashFiles('**/yarn.lock') }}
- name: Install dependencies
run: |
yarn install --immutable
- name: Typecheck
run: |
yarn typecheck
- name: Linter
run: |
yarn lint
- name: Tests
run: |
yarn test
- name: Build
run: |
cp .env.example .env && yarn build