diff --git a/.github/workflows/development.yml b/.github/workflows/development.yml index 9dee34199..9a833edca 100644 --- a/.github/workflows/development.yml +++ b/.github/workflows/development.yml @@ -16,21 +16,18 @@ jobs: timeout-minutes: 10 steps: - name: "☁️ checkout repository" - uses: actions/checkout@v2 + uses: actions/checkout@v4 - - name: "🔧 setup node" - uses: actions/setup-node@v2.1.5 + - name: "🔧 setup node & run tests" + uses: actions/setup-node@v4 with: node-version: 16 - - name: "🔧 install npm@latest" - run: npm i -g npm@latest - - name: "📦 install dependencies" - uses: bahmutov/npm-install@v1 + run: npm ci - name: "🔍 run tests" - run: npm run test --if-present + run: npm test --if-present lint: name: Code standards @@ -38,18 +35,15 @@ jobs: timeout-minutes: 10 steps: - name: "☁️ checkout repository" - uses: actions/checkout@v2 + uses: actions/checkout@v4 - - name: "🔧 setup node" - uses: actions/setup-node@v2.1.5 + - name: "🔧 setup node & lint" + uses: actions/setup-node@v4 with: node-version: 16 - - name: "🔧 install npm@latest" - run: npm i -g npm@latest - - name: "📦 install dependencies" - uses: bahmutov/npm-install@v1 + run: npm ci - name: "🔍 lint code" run: npm run lint --if-present diff --git a/index.html b/index.html index fe19c5b7c..14c8155f1 100644 --- a/index.html +++ b/index.html @@ -4,7 +4,7 @@ <meta charset="utf-8" /> <meta name="viewport" content="width=device-width, initial-scale=1" /> <title><%= title %></title> - <meta name="description" content="The path to your next open-source contribution." /> + <meta name="description" content="The path to your next open-source contribution and more pizza." /> <link rel="icon" href="/favicon.svg" type="image/svg+xml" /> <link rel="alternate icon" href="/favicon.ico" type="image/png" sizes="16x16" /> <link rel="apple-touch-icon" href="/apple-touch-icon.png" sizes="180x180" />