Bump tar from 6.1.11 to 6.2.1 #25
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: 'Linting and Testing' | |
on: | |
pull_request | |
permissions: | |
id-token: write | |
contents: read | |
jobs: | |
eslint: | |
runs-on: ubuntu-latest | |
container: | |
image: node:17.4.0 | |
steps: | |
# Checkout the repository to the GitHub Actions runner | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: eslint | |
run: | | |
npm install eslint | |
./node_modules/.bin/eslint | |
testing: | |
continue-on-error: true | |
runs-on: ubuntu-latest | |
container: | |
image: node:17.4.0 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: testing | |
env: | |
HUSKY: 0 | |
run: | | |
npm install | |
# TODO: Now we are not running tests on github actions, we should add it back. They are all broken. | |
# npm test | |